hologramAnimationImage property

dynamic hologramAnimationImage

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

Uint8List? get hologramAnimationImage => _hologramAnimationImage;
void hologramAnimationImage=(dynamic val)

Implementation

set hologramAnimationImage(Uint8List? val) {
  _hologramAnimationImage = val;
  _setCustomization({"hologramAnimationImage": _toBase64(val)}, this);
}