saveBytesToTempFile function
Implementation
Future<String?> saveBytesToTempFile(
Uint8List bytes, {
String prefix = 'image',
String extension = 'png',
}) {
throw UnsupportedError('Saving images to a temp file is not supported on this platform.');
}