copyWith method

  1. @useResult
FBreadcrumbStyle copyWith({
  1. FWidgetStateMap<TextStyle>? textStyle,
  2. IconThemeData? iconStyle,
  3. EdgeInsetsGeometry? padding,
  4. FTappableStyle? tappableStyle,
  5. FFocusedOutlineStyle? focusedOutlineStyle,
})
inherited

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

Where possible, it is strongly recommended to use the CLI to generate a style and directly modify the style.

Implementation

@useResult
FBreadcrumbStyle copyWith({
  FWidgetStateMap<TextStyle>? textStyle,
  IconThemeData? iconStyle,
  EdgeInsetsGeometry? padding,
  FTappableStyle? tappableStyle,
  FFocusedOutlineStyle? focusedOutlineStyle,
}) => FBreadcrumbStyle(
  textStyle: textStyle ?? this.textStyle,
  iconStyle: iconStyle ?? this.iconStyle,
  padding: padding ?? this.padding,
  tappableStyle: tappableStyle ?? this.tappableStyle,
  focusedOutlineStyle: focusedOutlineStyle ?? this.focusedOutlineStyle,
);