alphaTest property

num get alphaTest

Implementation

num get alphaTest => _alphaTest;
set alphaTest (num value)

Implementation

set alphaTest(num value) {
  if ((_alphaTest > 0) != (value > 0)) {
    version++;
  }

  _alphaTest = value;
}