copyWith method
FxPinInputTheme
copyWith({
- double? spacing,
- Color? borderColor,
- Color? backgroundColor,
- Color? errorBorderColor,
- Color? focusBorderColor,
- TextStyle? textStyle,
- InputBorder? border,
- EdgeInsetsGeometry? padding,
Implementation
FxPinInputTheme copyWith({
double? spacing,
Color? borderColor,
Color? backgroundColor,
Color? errorBorderColor,
Color? focusBorderColor,
TextStyle? textStyle,
InputBorder? border,
EdgeInsetsGeometry? padding,
}) => FxPinInputTheme(
spacing: spacing ?? this.spacing,
borderColor: borderColor ?? this.borderColor,
backgroundColor: backgroundColor ?? this.backgroundColor,
errorBorderColor: errorBorderColor ?? this.errorBorderColor,
focusBorderColor: focusBorderColor ?? this.focusBorderColor,
textStyle: textStyle ?? this.textStyle,
border: border ?? this.border,
padding: padding ?? this.padding,
);