clearAndroidRawLogs method

Future<void> clearAndroidRawLogs()

Implementation

Future<void> clearAndroidRawLogs() async {
  if (Platform.isAndroid) {
    await Process.run('logcat', ['-c']);
  }
}