response method
Implementation
@override
Future<ChannelListQueryResponse<OpenChannel>> response(res) async {
return ChannelListQueryResponse()
..channels = (res['channels'] as List)
.map((e) => OpenChannel.fromJsonAndCached(e, ts: res['ts']))
.toList()
..next = res['next'] as String;
}