clearAll method

Future<void> clearAll()

Clears all data inserted by the app from the device and the cloud.

Implementation

Future<void> clearAll() async {
  await _channel.invokeMethod<void>(
    'clearAll',
  );
}