copyWith method Null safety
- {Color? color,
- double? elevation,
- NotchedShape? shape}
Creates a copy of this object but with the given fields replaced with the new values.
Implementation
BottomAppBarTheme copyWith({
Color? color,
double? elevation,
NotchedShape? shape,
}) {
return BottomAppBarTheme(
color: color ?? this.color,
elevation: elevation ?? this.elevation,
shape: shape ?? this.shape,
);
}