Workspace constructor

Workspace({
  1. String? createTime,
  2. String? displayName,
  3. String? name,
  4. List<Table>? tables,
  5. String? updateTime,
})

Implementation

Workspace({
  this.createTime,
  this.displayName,
  this.name,
  this.tables,
  this.updateTime,
});