copyWith method
Returns a copy of this FLabelStyles with the given properties replaced.
Implementation
@useResult
FLabelStyles copyWith({
FLabelStyle? horizontalStyle,
FLabelStyle? verticalStyle,
}) =>
FLabelStyles(
horizontalStyle: horizontalStyle ?? this.horizontalStyle,
verticalStyle: verticalStyle ?? this.verticalStyle,
);