deleteAllData method

  1. @override
Future<void> deleteAllData()

Clears all storage currently being used by the JavaScript storage APIs. This includes the Application Cache, Web SQL Database and the HTML5 Web Storage APIs.

Officially Supported Platforms/Implementations:

Implementation

@override
Future<void> deleteAllData() async {
  Map<String, dynamic> args = <String, dynamic>{};
  await channel?.invokeMethod('deleteAllData', args);
}