multipageAnimationBackImage property

ByteData? multipageAnimationBackImage

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

Implementation

ByteData? get multipageAnimationBackImage => _multipageAnimationBackImage;
void multipageAnimationBackImage=(ByteData? val)

Implementation

set multipageAnimationBackImage(ByteData? val) {
  _multipageAnimationBackImage = val;
  _set({"multipageAnimationBackImage": _dataToBase64(val)});
}