torchButtonOnImage property

dynamic torchButtonOnImage

Allows you to set any image for the torch button when its state is ON.

Implementation

Uint8List? get torchButtonOnImage => _torchButtonOnImage;
void torchButtonOnImage=(dynamic val)

Implementation

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