listDatabases method

  1. @override
Future<List<String>> listDatabases()
override

Lists all databases/catalogs accessible to the current connection.

Implementation

@override
Future<List<String>> listDatabases() async {
  throw UnsupportedError(
    'SnapshotSchemaDriver does not support database management.',
  );
}