helperFocusedErrorBorder method
dynamic
helperFocusedErrorBorder()
Implementation
helperFocusedErrorBorder(){
return OutlineInputBorder(
borderRadius: BorderRadius.only(
topLeft:Radius.circular(_radiusTopLeft),
topRight:Radius.circular(_radiusTopRight),
bottomRight:Radius.circular(_radiusBottomLeft),
bottomLeft:Radius.circular(_radiusBottomRight),
),
borderSide: BorderSide(color: _focusedErrorBorderColor, width: _borderWidth),
);
}