copyWith method
- @override
- @useResult
- TextStyle? labelTextStyle,
- TextStyle? contentTextStyle,
- TextStyle? hintTextStyle,
- TextStyle? descriptionTextStyle,
- FTextFieldBorderStyle? focusedStyle,
- FTextFieldBorderStyle? unfocusedStyle,
override
Returns a copy of this FTextFieldStateStyle with the given properties replaced.
Implementation
@override
@useResult
FTextFieldStateStyle copyWith({
TextStyle? labelTextStyle,
TextStyle? contentTextStyle,
TextStyle? hintTextStyle,
TextStyle? descriptionTextStyle,
FTextFieldBorderStyle? focusedStyle,
FTextFieldBorderStyle? unfocusedStyle,
}) =>
FTextFieldStateStyle(
labelTextStyle: labelTextStyle ?? this.labelTextStyle,
contentTextStyle: contentTextStyle ?? this.contentTextStyle,
hintTextStyle: hintTextStyle ?? this.hintTextStyle,
descriptionTextStyle: descriptionTextStyle ?? this.descriptionTextStyle,
focusedStyle: focusedStyle ?? this.focusedStyle,
unfocusedStyle: unfocusedStyle ?? this.unfocusedStyle,
);