copyWith method
Returns a copy of this FHeaderActionStyle with the given properties replaced.
Implementation
@useResult
FHeaderActionStyle copyWith({
Color? enabledColor,
Color? disabledColor,
double? size,
}) =>
FHeaderActionStyle(
enabledColor: enabledColor ?? this.enabledColor,
disabledColor: disabledColor ?? this.disabledColor,
size: size ?? this.size,
);