livenessAnimationImage property

ByteData? livenessAnimationImage

Allows you to set any image for the liveness 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

ByteData? get livenessAnimationImage => _livenessAnimationImage;
void livenessAnimationImage=(ByteData? val)

Implementation

set livenessAnimationImage(ByteData? val) {
  _livenessAnimationImage = val;
  _set({"livenessAnimationImage": _dataToBase64(val)});
}