A Function, which when given an Array of keys, returns a Future of an Array of values or Errors.
typedef BatchLoadFn<K, V> = Future<List<V>> Function(List<K> keys);