livenessAnimationImageTransformsIOS property

ViewContentMode? livenessAnimationImageTransformsIOS

Allows you to specify how a view of the liveness animation adjusts its content when its size changes.

Default: ViewContentMode.SCALE_ASPECT_FIT.

IOS only. For Android use livenessAnimationImageTransformsAndroid.

Implementation

ViewContentMode? get livenessAnimationImageTransformsIOS =>
    _livenessAnimationImageTransformsIOS;
void livenessAnimationImageTransformsIOS=(ViewContentMode? val)

Implementation

set livenessAnimationImageTransformsIOS(ViewContentMode? val) {
  _livenessAnimationImageTransformsIOS = val;
  _set({"livenessAnimationImageContentMode": val?.value});
}