ListGroupUsersRequest constructor

ListGroupUsersRequest({
  1. String? groupId,
  2. Int32Value? limit,
  3. Int32Value? state,
  4. String? cursor,
})

Implementation

factory ListGroupUsersRequest({
  $core.String? groupId,
  $1.Int32Value? limit,
  $1.Int32Value? state,
  $core.String? cursor,
}) {
  final _result = create();
  if (groupId != null) {
    _result.groupId = groupId;
  }
  if (limit != null) {
    _result.limit = limit;
  }
  if (state != null) {
    _result.state = state;
  }
  if (cursor != null) {
    _result.cursor = cursor;
  }
  return _result;
}