MapModel constructor
MapModel(
- WidgetModel parent,
- String? id, {
- String? style,
- dynamic zoom,
- MapTypes? mapType,
- dynamic visible,
- dynamic showAll,
Implementation
MapModel(
WidgetModel parent,
String? id, {
this.style,
dynamic zoom,
this.mapType,
dynamic visible,
dynamic showAll,
}) : super(parent, id)
{
// instantiate busy observable
busy = false;
this.zoom = zoom;
this.visible = visible;
this.showAll = (showAll ?? true);
}