fromJson static method
Implementation
static GoogleMapsMarkerEntity fromJson(Map<String, dynamic> json) =>
GoogleMapsMarkerEntity(
id: json['id'],
position: AdvancedLatLng.fromJson(json['position']),
title: FGeneralTypeInput.fromJson(json['title']),
snippet: FGeneralTypeInput.fromJson(json['snippet']),
);