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