destroyLog static method

Future<bool> destroyLog()

Destroy the entire contents of plugin's log database.

Example

Logger.destroyLog();

Implementation

static Future<bool> destroyLog() async {
  return await (_methodChannel.invokeMethod<bool>('destroyLog'))
      as FutureOr<bool>;
}