TableMetadata constructor

TableMetadata({
  1. required String name,
  2. List<Column>? columns,
  3. DateTime? createTime,
  4. DateTime? lastAccessTime,
  5. Map<String, String>? parameters,
  6. List<Column>? partitionKeys,
  7. String? tableType,
})

Implementation

TableMetadata({
  required this.name,
  this.columns,
  this.createTime,
  this.lastAccessTime,
  this.parameters,
  this.partitionKeys,
  this.tableType,
});