QueryGrantsRequest constructor
QueryGrantsRequest({
- String? granter,
- String? grantee,
- String? msgTypeUrl,
- PageRequest? pagination,
Implementation
factory QueryGrantsRequest({
$core.String? granter,
$core.String? grantee,
$core.String? msgTypeUrl,
$6.PageRequest? pagination,
}) {
final _result = create();
if (granter != null) {
_result.granter = granter;
}
if (grantee != null) {
_result.grantee = grantee;
}
if (msgTypeUrl != null) {
_result.msgTypeUrl = msgTypeUrl;
}
if (pagination != null) {
_result.pagination = pagination;
}
return _result;
}