copyWith method

Returns a copy of this FHeaderActionStyle with the given properties replaced.

See customizing widget styles.

Parameters

Implementation

@useResult
FHeaderActionStyle copyWith({
  FVariantsDelta<FTappableVariantConstraint, FTappableVariant, IconThemeData, IconThemeDataDelta>? iconStyle,
  FFocusedOutlineStyleDelta? focusedOutlineStyle,
  FTappableStyleDelta? tappableStyle,
}) => .new(
  iconStyle: iconStyle?.call(this.iconStyle) ?? this.iconStyle,
  focusedOutlineStyle: focusedOutlineStyle?.call(this.focusedOutlineStyle) ?? this.focusedOutlineStyle,
  tappableStyle: tappableStyle?.call(this.tappableStyle) ?? this.tappableStyle,
);