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