copyWith method
Returns a copy of this FFormFieldErrorStyle with the given properties replaced.
Implementation
@override
FSelectGroupErrorStyle copyWith({
TextStyle? labelTextStyle,
TextStyle? descriptionTextStyle,
TextStyle? errorTextStyle,
}) =>
FSelectGroupErrorStyle(
labelTextStyle: labelTextStyle ?? this.labelTextStyle,
descriptionTextStyle: descriptionTextStyle ?? this.descriptionTextStyle,
errorTextStyle: errorTextStyle ?? this.errorTextStyle,
);