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