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