ListFriendsRequest constructor

ListFriendsRequest({
  1. Int32Value? limit,
  2. Int32Value? state,
  3. String? cursor,
})

Implementation

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