Returns a binary string of bits representing n.
n
static String binaryOf(int n) => n.toRadixString(2);