cameraSwitchButtonImage property

dynamic cameraSwitchButtonImage

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

Implementation

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

Implementation

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