borderBackgroundImage property

ByteData? get borderBackgroundImage

Allows you to set any image within the camera frame.

Implementation

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

Implementation

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