Table constructor

Table({
  1. List<ColumnDescription>? columns,
  2. String? createTime,
  3. String? displayName,
  4. String? name,
  5. List<SavedView>? savedViews,
  6. String? updateTime,
})

Implementation

Table({
  this.columns,
  this.createTime,
  this.displayName,
  this.name,
  this.savedViews,
  this.updateTime,
});