copyWith method

  1. @override
MapWidgetColorScheme copyWith({
  1. TextStyle? textStyle,
  2. Color? surfaceColor,
  3. Size? iconSize,
  4. double? containerHeight,
  5. List<BoxShadow>? shadows,
  6. 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,
  );
}