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