borderBackgroundImage property

dynamic borderBackgroundImage

Allows you to set any image within the camera frame.

Implementation

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

Implementation

set borderBackgroundImage(ByteData? val) {
  _borderBackgroundImage = val;
  _set({"borderBackgroundImage": _dataToBase64(val)});
}