TableIdentifier constructor

TableIdentifier({
  1. String? catalogId,
  2. String? databaseName,
  3. String? name,
})

Implementation

TableIdentifier({
  this.catalogId,
  this.databaseName,
  this.name,
});