Style constructor

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

Implementation

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