OrganizationScope constructor

OrganizationScope({
  1. String? organizationId,
  2. String? projectId,
  3. String? environmentId,
})

Implementation

factory OrganizationScope({
  $core.String? organizationId,
  $core.String? projectId,
  $core.String? environmentId,
}) {
  final result = create();
  if (organizationId != null) result.organizationId = organizationId;
  if (projectId != null) result.projectId = projectId;
  if (environmentId != null) result.environmentId = environmentId;
  return result;
}