saveImage method

Future<ImageSaveResult> saveImage(
  1. Uint8List imageBytes, {
  2. required ImageSaveOptions options,
})
inherited

Saves an image to the device.

Returns ImageSaveResult with null to ImageSaveResult.filePath if the operation was canceled and always null on web platforms.

Implementation

Future<ImageSaveResult> saveImage(
  Uint8List imageBytes, {
  required ImageSaveOptions options,
}) =>
    throw UnimplementedError(
      'saveImage() has not been implemented.',
    );