fromJson static method
Implementation
static ChatLocation fromJson(Map<String, dynamic> json) {
return ChatLocation(
location: json['location'],
address: json['address'],
);
}
static ChatLocation fromJson(Map<String, dynamic> json) {
return ChatLocation(
location: json['location'],
address: json['address'],
);
}