multipageAnimationBackImage property

dynamic multipageAnimationBackImage

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

Implementation

Image? get multipageAnimationBackImage => _multipageAnimationBackImage;
void multipageAnimationBackImage=(dynamic val)

Implementation

set multipageAnimationBackImage(Image? val) {
  _multipageAnimationBackImage = val;
  _set({"multipageAnimationBackImage": _imageToBase64(val)});
}