remember abstract method

Future remember(
  1. String key,
  2. Duration ttl,
  3. Future callback()
)

Retrieves a value or stores the default value if it doesn't exist.

Implementation

Future<dynamic> remember(
  String key,
  Duration ttl,
  Future<dynamic> Function() callback,
);