bin constant

TomlIntegerFormat const bin

Format of a binary (base 2) integer.

bin-prefix = %x30.62               ; 0b

Implementation

static const TomlIntegerFormat bin =
    TomlIntegerFormat._(base: 2, prefix: '0b');