borderBackgroundImage property

dynamic borderBackgroundImage

Allows you to set any image within the camera frame.

Implementation

Uint8List? get borderBackgroundImage => _borderBackgroundImage;
void borderBackgroundImage=(dynamic val)

Implementation

set borderBackgroundImage(Uint8List? val) {
  _borderBackgroundImage = val;
  _setCustomization({"borderBackgroundImage": _toBase64(val)}, this);
}