reportOffset property

int get reportOffset

Implementation

int get reportOffset {
  var offset = 0;
  if (shift) {
    offset += _shiftMask;
  }
  if (alt) {
    offset += _altMask;
  }
  if (control) {
    offset += _controlMask;
  }
  return offset;
}