captureButtonImage property

dynamic captureButtonImage

Allows you to set any image for the capture button.

Implementation

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

Implementation

set captureButtonImage(Uint8List? val) {
  _captureButtonImage = val;
  _setCustomization({"captureButtonImage": _toBase64(val)}, this);
}