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