getAllByKey method

Future<List<KV?>> getAllByKey(
  1. List<String> keyValues
)

Implementation

Future<List<KV?>> getAllByKey(List<String> keyValues) {
  final values = keyValues.map((e) => [e]).toList();
  return getAllByIndex(r'key', values);
}