clearAllFiles method
Implementation
@override
Future<bool?> clearAllFiles() async {
try {
final result =
await methodChannel.invokeMethod<bool>(METHOD_CLEAR_ALL_FILES);
return result;
} on PlatformException catch (e) {
throw _libException(e);
}
}