disposeAllIdentifiers method

Future<void> disposeAllIdentifiers()

Dispose of all identifiers persisted for your app. Afterwards, you will need the user to re-pick any files in order to access them.

Some platforms (Android) limit how many identifiers your app can persist at once. Use this method to ensure that all identifiers are disposed, even in the case where e.g. you have lost track of an identifier and so cannot call disposeIdentifier on it.

Implementation

Future<void> disposeAllIdentifiers() async {
  _logger.finest('disposeAllIdentifiers()');
  return _channel.invokeMethod<void>('disposeAllIdentifiers');
}