borderBackgroundImage property

  1. @Deprecated("Use `images.borderBackground` instead.")
ByteData? get borderBackgroundImage

Allows you to set any image within the camera frame.

Implementation

@Deprecated("Use `images.borderBackground` instead.")
ByteData? get borderBackgroundImage => _borderBackgroundImage;
set borderBackgroundImage (ByteData? val)

Implementation

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