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