cache property

Future<T?> get cache

Implementation

Future<T?> get cache {
  return _r(key).then((value) {
    if (value.isNotEmpty) {
      return build(value);
    } else {
      return null;
    }
  });
}