deleteAll method

  1. @override
Future<void> deleteAll({
  1. required Map<String, String> options,
})
override

Deletes all key-value pairs from secure storage.

Parameters:

  • options: A map of platform-specific options for the delete-all operation.

Returns:

  • A Future that completes when the delete-all operation finishes.

Implementation

@override
Future<void> deleteAll({required Map<String, String> options}) async =>
    data.clear();