ChatLocation.fromJson constructor
Creates a new ChatLocation object from json.
Implementation
factory ChatLocation.fromJson(Map<String, dynamic> json) {
return ChatLocation(
location: Location.fromJson(json['location'] as Map<String, dynamic>),
address: json['address'] as String,
);
}