copyWith method

  1. @override
NavigationCompassWidgetTheme copyWith({
  1. Color? surfaceColor,
})
override

Implementation

@override
NavigationCompassWidgetTheme copyWith({Color? surfaceColor}) {
  return NavigationCompassWidgetTheme(
    surfaceColor: surfaceColor ?? this.surfaceColor,
  );
}