value property

int get value

Implementation

int get value {
  switch (this) {
    case TouchMode.off:
      return 0x00;
    case TouchMode.on:
      return 0x01;
    case TouchMode.fixed:
      return 0x02;
    case TouchMode.cached:
      return 0x03;
    case TouchMode.cachedFixed:
      return 0x04;
  }
}