Table constructor
Table({
- required String name,
- String? catalogId,
- DateTime? createTime,
- String? createdBy,
- String? databaseName,
- String? description,
- bool? isRegisteredWithLakeFormation,
- DateTime? lastAccessTime,
- DateTime? lastAnalyzedTime,
- String? owner,
- Map<
String, String> ? parameters, - List<
Column> ? partitionKeys, - int? retention,
- StorageDescriptor? storageDescriptor,
- String? tableType,
- TableIdentifier? targetTable,
- DateTime? updateTime,
- String? viewExpandedText,
- String? viewOriginalText,
Implementation
Table({
required this.name,
this.catalogId,
this.createTime,
this.createdBy,
this.databaseName,
this.description,
this.isRegisteredWithLakeFormation,
this.lastAccessTime,
this.lastAnalyzedTime,
this.owner,
this.parameters,
this.partitionKeys,
this.retention,
this.storageDescriptor,
this.tableType,
this.targetTable,
this.updateTime,
this.viewExpandedText,
this.viewOriginalText,
});