fromBinary method

int? fromBinary()

Transform int value to binary string 转换int值为二进制字符串 Example: 1111 => 15

Implementation

int? fromBinary() => TransformUtils.fromBinary(this.toString());