cameraSwitchButtonImage property

dynamic get cameraSwitchButtonImage

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

Implementation

ByteData? get cameraSwitchButtonImage => _cameraSwitchButtonImage;
set cameraSwitchButtonImage (dynamic val)

Implementation

set cameraSwitchButtonImage(ByteData? val) {
  _cameraSwitchButtonImage = val;
  _set({"cameraSwitchButtonImage": _dataToBase64(val)});
}