borderBackgroundImage property

ByteData? borderBackgroundImage

Allows you to set any image within the camera frame.

Implementation

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

Implementation

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