hasTable method

Future<bool> hasTable(
  1. String table, {
  2. String? schema,
})

Implementation

Future<bool> hasTable(String table, {String? schema}) async {
  final id = _identifier(table, schema);
  return driver.hasTable(id.name, schema: id.schema);
}