copyWith method
Implementation
Material3BottomBarTheme copyWith({
Duration? animationDuration,
NavigationDestinationLabelBehavior? labelBehavior,
double? elevation,
Color? bgColor,
double? height,
}) {
return Material3BottomBarTheme(
animationDuration: animationDuration ?? this.animationDuration,
labelBehavior: labelBehavior ?? this.labelBehavior,
elevation: elevation ?? this.elevation,
bgColor: bgColor ?? this.bgColor,
height: height ?? this.height,
);
}