getAndroidRawLogs property
Retrieves raw logs from Android's logcat.
Returns the raw log messages as a String (only applicable on Android).
Implementation
Future<String> get getAndroidRawLogs async {
if (!Platform.isAndroid) return '';
final process = await Process.run('logcat', ['-v', 'raw', '-d']);
final result = process.stdout as String;
return result;
}