clearTemporaryFiles method

  1. @override
Future<void> clearTemporaryFiles()
override

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
  }
}