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 {
  throw UnsupportedError(
    'Web implementation is not supported on this platform',
  );
}