table method

  1. @override
QueryBuilder table(
  1. String table, [
  2. String? as
])
inherited

Implementation

@override
QueryBuilder table(String table, [String? as]) {
  _table = table;
  _tableAlias = as;
  return this;
}