LocationAttachment.fromJson constructor
Implementation
factory LocationAttachment.fromJson(Map<String, dynamic> json) {
return LocationAttachment(
latitude: (json['latitude'] as num).toDouble(),
longitude: (json['longitude'] as num).toDouble(),
);
}