copyWith method
BorderScheme
copyWith(
{ - Color? borderColor,
- Dim? borderWidth,
- Dim? fieldHoverBorderWidth,
- Dim? focusBorderWidth,
- Dim? errorBorderWidth,
})
Implementation
BorderScheme copyWith({
Color? borderColor,
Dim? borderWidth,
Dim? fieldHoverBorderWidth,
Dim? focusBorderWidth,
Dim? errorBorderWidth,
}) {
return BorderScheme(
borderColor: borderColor ?? this.borderColor,
borderWidth: borderWidth ?? this.borderWidth,
fieldHoverBorderWidth:
fieldHoverBorderWidth ?? this.fieldHoverBorderWidth,
focusBorderWidth: focusBorderWidth ?? this.focusBorderWidth,
errorBorderWidth: errorBorderWidth ?? this.errorBorderWidth,
);
}