Transform int value to binary 转换int值为二进制 Example: 15 => 1111
static int toBinaryInt(int i) => int.parse(i.toRadixString(2));