copyWith method
MapWidgetColorScheme
copyWith({
- TextStyle? textStyle,
- Color? surfaceColor,
- Size? iconSize,
- double? containerHeight,
- List<
BoxShadow> ? shadows, - double? containerBorderRadius,
override
Implementation
@override
MapWidgetColorScheme copyWith({
TextStyle? textStyle,
Color? surfaceColor,
Size? iconSize,
double? containerHeight,
List<BoxShadow>? shadows,
double? containerBorderRadius,
}) {
return AdditionalManeuverTheme(
textStyle: textStyle ?? this.textStyle,
surfaceColor: surfaceColor ?? this.surfaceColor,
iconSize: iconSize ?? this.iconSize,
containerHeight: containerHeight ?? this.containerHeight,
shadows: shadows ?? this.shadows,
containerBorderRadius:
containerBorderRadius ?? this.containerBorderRadius,
);
}