helperEnabledBorder method

dynamic helperEnabledBorder()

Implementation

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