ResourceType constructor

ResourceType({
  1. bool? instance,
  2. String? organizationId,
  3. String? projectId,
  4. 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;
}