ListFriendsRequest constructor
ListFriendsRequest({
- Int32Value? limit,
- Int32Value? state,
- 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;
}