clearTemporaryFiles method
Clears all temporary files created by the plugin.
Platform implementations should override this method to clean up temporary files on their respective platforms.
Implementation
@override
Future<void> clearTemporaryFiles() async {
try {
await methodChannel.invokeMethod('clearTemporaryFiles');
} on PlatformException {
// Handle error silently
}
}