leftShift32 method

int leftShift32(
  1. int n
)

Implementation

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