MapLocationModel constructor
MapLocationModel(})
Implementation
MapLocationModel(WidgetModel super.parent, super.id,
{dynamic data,
dynamic latitude,
dynamic longitude,
String? info,
String? infoSnippet,
this.label,
String? marker,
dynamic visible})
: super(scope: Scope(parent: parent.scope)) {
this.data = data;
this.latitude = latitude;
this.longitude = longitude;
title = info;
description = infoSnippet;
this.marker = marker;
this.visible = visible;
}