MapTheme constructor

const MapTheme({
  1. required String name,
  2. required Color loadingBackground,
  3. MapThemeColorMode colorMode = MapThemeColorMode.light,
})

Implementation

const MapTheme({
  required this.name,
  required this.loadingBackground,
  this.colorMode = MapThemeColorMode.light,
});