DataProjectGrant constructor
DataProjectGrant({
- String? grantId,
- AddProjectGrantRequest? projectGrant,
Implementation
factory DataProjectGrant({
$core.String? grantId,
$0.AddProjectGrantRequest? projectGrant,
}) {
final $result = create();
if (grantId != null) {
$result.grantId = grantId;
}
if (projectGrant != null) {
$result.projectGrant = projectGrant;
}
return $result;
}