inspect method
Implementation
Future<ArrowSchema> inspect({required String database, required String table, List<String>? namespace}) async {
final response = await _invoke("inspect", {"database": database, "table": table, "namespace": namespace});
if (response is! BinaryContent) {
throw _unexpectedResponseError("inspect");
}
return ArrowIpcSchema(response.data).schema;
}