GetMutualRoomsResponse.fromJson constructor
Implementation
GetMutualRoomsResponse.fromJson(Map<String, Object?> json)
: count = json['count'] as int,
joined = (json['joined'] as List).map((v) => v as String).toList(),
nextBatch = ((v) => v != null ? v as String : null)(json['next_batch']);