cameraSwitchButtonImage property

dynamic cameraSwitchButtonImage

Allows you to set any image for the button that allows changing positions of the capture device.

Implementation

Image? get cameraSwitchButtonImage => _cameraSwitchButtonImage;
void cameraSwitchButtonImage=(dynamic val)

Implementation

set cameraSwitchButtonImage(Image? val) {
  _cameraSwitchButtonImage = val;
  _set({"cameraSwitchButtonImage": _imageToBase64(val)});
}