rightShift32 method

int rightShift32(
  1. int n
)

Implementation

int rightShift32(int n) => ((toInt() & 0xFFFFFFFF) >> n).toSigned(32);