toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'count'] = this.count;
json[r'live_count'] = this.liveCount;
if (this.location != null) {
json[r'location'] = this.location;
} else {
json[r'location'] = null;
}
return json;
}