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 {
  // Web doesn't need temporary file cleanup as files are handled in memory
  return;
}