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