pixelType property

int pixelType

Implementation

int get pixelType => _pixelType;
void pixelType=(int value)

Implementation

set pixelType(int value) {
  if (pixelType == value) return;

  _pixelType = value;
  update();
}