saveBytesToTempFile function

Future<String?> saveBytesToTempFile(
  1. Uint8List bytes, {
  2. String prefix = 'image',
  3. String extension = 'png',
})

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.');
}