focusedErrorBorder property

  1. @override
InputBorder focusedErrorBorder
override

The border to display when the InputDecorator has the focus and is showing an error.

See also:

Implementation

@override
InputBorder get focusedErrorBorder => OutlineInputBorder(
      borderSide: BorderSide(
        color: Colors.red,
        width: borderWidth ?? 0,
      ),
      borderRadius: getradius(shape),
    );