saveData abstract method

Future<void> saveData(
  1. String key,
  2. dynamic value
)

Stores arbitrary data with a key.

This can be used for caching, temporary state, or any other data that needs to be persisted.

Implementation

Future<void> saveData(String key, dynamic value);