ResourceType constructor
ResourceType({
- bool? instance,
- String? organizationId,
- String? projectId,
- ResourceType_ProjectGrant? projectGrant,
Implementation
factory ResourceType({
$core.bool? instance,
$core.String? organizationId,
$core.String? projectId,
ResourceType_ProjectGrant? projectGrant,
}) {
final result = create();
if (instance != null) result.instance = instance;
if (organizationId != null) result.organizationId = organizationId;
if (projectId != null) result.projectId = projectId;
if (projectGrant != null) result.projectGrant = projectGrant;
return result;
}