cameraFrameActiveColor property

dynamic cameraFrameActiveColor

Allows you to set a color for the camera frame when a document is detected.

Default: Colors.green.

Implementation

Color? get cameraFrameActiveColor => _cameraFrameActiveColor;
void cameraFrameActiveColor=(dynamic val)

Implementation

set cameraFrameActiveColor(Color? val) {
  _cameraFrameActiveColor = val;
  _setCustomization({"cameraFrameActiveColor": _intFromColor(val)}, this);
}