copyWith method
- @useResult
- FWidgetStateMap<
TextStyle> ? textStyle, - IconThemeData? iconStyle,
- EdgeInsetsGeometry? padding,
- FTappableStyle? tappableStyle,
- 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,
);