captureButtonImage property

dynamic captureButtonImage

Allows you to set any image for the capture button.

Implementation

Image? get captureButtonImage => _captureButtonImage;
void captureButtonImage=(dynamic val)

Implementation

set captureButtonImage(Image? val) {
  _captureButtonImage = val;
  _set({"captureButtonImage": _imageToBase64(val)});
}