clear method
Implementation
Future<void> clear() async {
Log.d(_kTag, 'clear');
final path = File(await _getReportPath());
if (path.existsSync()) path.deleteSync();
}
Future<void> clear() async {
Log.d(_kTag, 'clear');
final path = File(await _getReportPath());
if (path.existsSync()) path.deleteSync();
}