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