persistence method

Future<void> persistence()

Initializes the local persistence layer for storing SDK data.

Currently not implemented. Throws an UnimplementedError when called.

Implementation

Future<void> persistence() async {
  // TODO: Implement persistence
  throw UnimplementedError('persistence() not yet implemented');
}