FlutterMap constructor

FlutterMap(
  1. {Key? key,
  2. required MapOptions options,
  3. List<LayerOptions> layers = const [],
  4. List<LayerOptions> nonRotatedLayers = const [],
  5. List<Widget> children = const [],
  6. List<Widget> nonRotatedChildren = const [],
  7. MapController? mapController}
)

Implementation

FlutterMap({
  Key? key,
  required this.options,
  this.layers = const [],
  this.nonRotatedLayers = const [],
  this.children = const [],
  this.nonRotatedChildren = const [],
  MapController? mapController,
})  : _mapController = mapController as MapControllerImpl?,
      super(key: key);