MapModel constructor

MapModel(
  1. WidgetModel parent,
  2. String? id, {
  3. dynamic zoom,
  4. dynamic visible,
})

Implementation

MapModel(WidgetModel super.parent, super.id,
    {dynamic zoom, dynamic visible}) {
  // instantiate busy observable
  busy = false;

  this.zoom = zoom;
  this.visible = visible;
}