ListNotificationsRequest constructor
ListNotificationsRequest({
- Int32Value? limit,
- String? cacheableCursor,
Implementation
factory ListNotificationsRequest({
$1.Int32Value? limit,
$core.String? cacheableCursor,
}) {
final _result = create();
if (limit != null) {
_result.limit = limit;
}
if (cacheableCursor != null) {
_result.cacheableCursor = cacheableCursor;
}
return _result;
}