showBackgroundMask property

bool? get 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;
set showBackgroundMask (bool? val)

Implementation

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