ListChannelMessagesRequest constructor
ListChannelMessagesRequest({
- String? channelId,
- Int32Value? limit,
- BoolValue? forward,
- String? cursor,
Implementation
factory ListChannelMessagesRequest({
$core.String? channelId,
$1.Int32Value? limit,
$1.BoolValue? forward,
$core.String? cursor,
}) {
final _result = create();
if (channelId != null) {
_result.channelId = channelId;
}
if (limit != null) {
_result.limit = limit;
}
if (forward != null) {
_result.forward = forward;
}
if (cursor != null) {
_result.cursor = cursor;
}
return _result;
}