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