hologramAnimationImage property
Allows you to set any image for the hologram animation.
When set to null
the default image will be used.
This property can be set during the scanning process to tailor
the user experiese for different types of documents.
Implementation
Image? get hologramAnimationImage => _hologramAnimationImage;
Implementation
set hologramAnimationImage(Image? val) {
_hologramAnimationImage = val;
_set({"hologramAnimationImage": _imageToBase64(val)});
}