showBackgroundMask property

bool? showBackgroundMask

If it's set to true, the background mask next to the camera frame will be displayed.

Default: true.

Implementation

bool? get showBackgroundMask => _showBackgroundMask;
void showBackgroundMask=(bool? val)

Implementation

set showBackgroundMask(bool? val) {
  _showBackgroundMask = val;
  _set({"showBackgroundMask": val});
}