FFFocusBorder constructor
FFFocusBorder({
- bool? showBorderOnFocus,
- FFBorderRadius? borderRadius,
- FFColorValue? borderColorValue,
- FFDoubleValue? borderWidthValue,
- FFPadding? padding,
- bool? showBorderAroundRadioButtonAndText,
Implementation
factory FFFocusBorder({
$core.bool? showBorderOnFocus,
FFBorderRadius? borderRadius,
FFColorValue? borderColorValue,
FFDoubleValue? borderWidthValue,
FFPadding? padding,
$core.bool? showBorderAroundRadioButtonAndText,
}) {
final result = create();
if (showBorderOnFocus != null) result.showBorderOnFocus = showBorderOnFocus;
if (borderRadius != null) result.borderRadius = borderRadius;
if (borderColorValue != null) result.borderColorValue = borderColorValue;
if (borderWidthValue != null) result.borderWidthValue = borderWidthValue;
if (padding != null) result.padding = padding;
if (showBorderAroundRadioButtonAndText != null)
result.showBorderAroundRadioButtonAndText =
showBorderAroundRadioButtonAndText;
return result;
}