putImageBytes static method

Future<void> putImageBytes(
  1. Uint8List bytes, {
  2. String? album,
  3. String name = 'image',
})

Save a image to the gallery from Uint8List.

Specify the album with album. If it does not exist, it will be created. Specify the file name with name. Do not include the extension.

await Gal.putImageBytes(bytes, name: 'photo');

Throws an GalException If you do not have access premission or if an error occurs during saving. See: Formats

Implementation

static Future<void> putImageBytes(Uint8List bytes,
        {String? album, String name = 'image'}) async =>
    GalPlatform.instance.putImageBytes(bytes, album: album, name: name);