toggleBit method

int toggleBit(
  1. int bit
)

Implementation

int toggleBit(int bit) => this ^ (1 << bit);