stats method
Implementation
Future<DatasetTableStats> stats(String table, {List<String>? namespace, String? branch, int? version, int? maxRowsPerGroup}) async {
final response = await _invoke("stats", {
"table": table,
"namespace": namespace,
"branch": branch,
"version": version,
"max_rows_per_group": maxRowsPerGroup,
});
if (response is! JsonContent) {
throw RoomServerException("unexpected return type from datasets.stats call");
}
return DatasetTableStats.fromJson(response.json);
}