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