inspect method
Restore a previous version of a table
Implementation
Future<Map<String, DataType>> inspect(String table, {List<String>? namespace}) async {
final json = (await room.sendRequest("database.inspect", {"table": table, "namespace": namespace}) as JsonResponse);
final schema = json.json["schema"] as Map;
return {for (final k in schema.keys) k: DataType.fromJson(schema[k])};
}