Partition constructor

Partition({
  1. String? catalogId,
  2. DateTime? creationTime,
  3. String? databaseName,
  4. DateTime? lastAccessTime,
  5. DateTime? lastAnalyzedTime,
  6. Map<String, String>? parameters,
  7. StorageDescriptor? storageDescriptor,
  8. String? tableName,
  9. List<String>? values,
})

Implementation

Partition({
  this.catalogId,
  this.creationTime,
  this.databaseName,
  this.lastAccessTime,
  this.lastAnalyzedTime,
  this.parameters,
  this.storageDescriptor,
  this.tableName,
  this.values,
});