CarillonLocation.fromJson constructor
Implementation
factory CarillonLocation.fromJson(Map<String, dynamic> json) {
return CarillonLocation(
id: json['ID'],
name: json['name'],
address: json['address'],
latitude: json['latitude'] + .0,
longitude: json['longitude'] + .0);
}