showHelpAnimation property

bool? showHelpAnimation

If it's set to true, the animation showing how to position a document will be displayed.

Default: false.

Implementation

bool? get showHelpAnimation => _showHelpAnimation;
void showHelpAnimation=(bool? val)

Implementation

set showHelpAnimation(bool? val) {
  _showHelpAnimation = val;
  _set({"showHelpAnimation": val});
}