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