borderBackgroundImage property

dynamic borderBackgroundImage

Allows you to set any image within the camera frame.

Implementation

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

Implementation

set borderBackgroundImage(Image? val) {
  _borderBackgroundImage = val;
  _set({"borderBackgroundImage": _imageToBase64(val)});
}