listChannelMessages method
Implementation
@override
Future<ChannelMessageList?> listChannelMessages({
required model.Session session,
required String channelId,
int limit = 20,
bool? forward,
String? cursor,
}) async {
assert(limit > 0 && limit <= 100);
_session = session;
final res = await _api.nakamaListChannelMessages(
channelId: channelId,
limit: limit,
forward: forward,
cursor: cursor,
);
return ChannelMessageList()..mergeFromProto3Json(res.body!.toJson());
}