saveImageToGalleryFromBytes method
Implementation
@override
Future<bool> saveImageToGalleryFromBytes({required Uint8List bytes}) async {
final result = await methodChannel.invokeMethod<bool>(
'saveImageToGalleryFromBytes',
{'bytes': bytes},
);
return result ?? false;
}