clear method

void clear()

clear the image data.

Implementation

void clear() {
  if (_imageData != null) {
    _imageData = null;
  }
}