Style constructor

Style({
  1. String? name,
  2. required Theme theme,
  3. required TileProviders providers,
  4. LatLng? center,
  5. double? zoom,
})

Implementation

Style(
    {this.name,
    required this.theme,
    required this.providers,
    this.center,
    this.zoom});