multipageAnimationFrontImage property

dynamic multipageAnimationFrontImage

Allows you to set any image for the multipage animation (front side).

Implementation

Image? get multipageAnimationFrontImage => _multipageAnimationFrontImage;
void multipageAnimationFrontImage=(dynamic val)

Implementation

set multipageAnimationFrontImage(Image? val) {
  _multipageAnimationFrontImage = val;
  _set({"multipageAnimationFrontImage": _imageToBase64(val)});
}