catalogIndexes method

Future<Uint8List?> catalogIndexes(
  1. int connectionId,
  2. String table
)

Implementation

Future<Uint8List?> catalogIndexes(
  int connectionId,
  String table,
) async {
  final r = await _sendRequest<QueryResponse>(
    CatalogIndexesRequest(_nextRequestId(), connectionId, table),
  );
  if (r.error != null) return null;
  return r.data;
}