freeAllResources method

Future<bool> freeAllResources()

Clears all the cached key pairs.

Implementation

Future<bool> freeAllResources() async {
  _keyPairsCache.clear();

  return true;
}