copyWith method
- @useResult
- FLabelStyleDelta? horizontalLeadingStyle,
- FLabelStyleDelta? horizontalTrailingStyle,
- FLabelStyleDelta? verticalStyle,
Returns a copy of this FLabelStyles with the given properties replaced.
See customizing widget styles.
Parameters
Implementation
@useResult
FLabelStyles copyWith({
FLabelStyleDelta? horizontalLeadingStyle,
FLabelStyleDelta? horizontalTrailingStyle,
FLabelStyleDelta? verticalStyle,
}) => .new(
horizontalLeadingStyle: horizontalLeadingStyle?.call(this.horizontalLeadingStyle) ?? this.horizontalLeadingStyle,
horizontalTrailingStyle:
horizontalTrailingStyle?.call(this.horizontalTrailingStyle) ?? this.horizontalTrailingStyle,
verticalStyle: verticalStyle?.call(this.verticalStyle) ?? this.verticalStyle,
);