ListNotificationsRequest constructor

ListNotificationsRequest({
  1. Int32Value? limit,
  2. 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;
}