Dataset constructor

Dataset({
  1. String name = '',
  2. required String displayName,
  3. String description = '',
  4. required String metadataSchemaUri,
  5. required Value? metadata,
  6. int dataItemCount = 0,
  7. Timestamp? createTime,
  8. Timestamp? updateTime,
  9. String etag = '',
  10. Map<String, String> labels = const {},
  11. List<SavedQuery> savedQueries = const [],
  12. EncryptionSpec? encryptionSpec,
  13. String metadataArtifact = '',
  14. String modelReference = '',
  15. bool satisfiesPzs = false,
  16. bool satisfiesPzi = false,
})

Implementation

Dataset({
  this.name = '',
  required this.displayName,
  this.description = '',
  required this.metadataSchemaUri,
  required this.metadata,
  this.dataItemCount = 0,
  this.createTime,
  this.updateTime,
  this.etag = '',
  this.labels = const {},
  this.savedQueries = const [],
  this.encryptionSpec,
  this.metadataArtifact = '',
  this.modelReference = '',
  this.satisfiesPzs = false,
  this.satisfiesPzi = false,
}) : super(fullyQualifiedName);