borderBackgroundImage property
- @Deprecated("Use `images.borderBackground` instead.")
Allows you to set any image within the camera frame.
Implementation
@Deprecated("Use `images.borderBackground` instead.")
ByteData? get borderBackgroundImage => _borderBackgroundImage;
Implementation
set borderBackgroundImage(ByteData? val) {
_borderBackgroundImage = val;
_set({"borderBackgroundImage": _dataToBase64(val)});
}