targetImage property

void targetImage=(Uint8List value)

The target image data

If this is set, targetImageAsset and targetImageFile will be null.

Implementation

set targetImage(Uint8List value) {
  _targetImage.data = value;
  _targetImage.asset = null;
  _targetImage.file = null;
}