getByKey method

Future<KV?> getByKey(
  1. String key
)

Implementation

Future<KV?> getByKey(String key) {
  return getByIndex(r'key', [key]);
}