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