Flips every bit in the matrix.
void flip([int? x, int? y]) { if (x == null || y == null) { _flipAll(); } else { _flipPoint(x, y); } }