InputBorder constructor

const InputBorder(
  1. {BorderSide borderSide = BorderSide.none}
)

Creates a border for an InputDecorator.

Applications typically do not specify a borderSide parameter because the InputDecorator substitutes its own, using copyWith, based on the current theme and InputDecorator.isFocused.

Implementation

const InputBorder({
  this.borderSide = BorderSide.none,
});