AddProjectGrantResponse constructor
AddProjectGrantResponse({
- String? grantId,
- ObjectDetails? details,
Implementation
factory AddProjectGrantResponse({
$core.String? grantId,
$2.ObjectDetails? details,
}) {
final result = create();
if (grantId != null) result.grantId = grantId;
if (details != null) result.details = details;
return result;
}