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