borderWidth property

double get borderWidth

Implementation

double get borderWidth {
  switch (inputDecorationType) {
    case InputDecorationType.outline:
      return _kDefaultBorderWidth;
    case InputDecorationType.rounded:
      return 1;
    case InputDecorationType.underline:
      return 1;
    case InputDecorationType.fill:
      return 1;
  }
}