CharacterSet.bitDigit constructor
CharacterSet.bitDigit()
Creates a character set that contains binary digit characters
(0
, 1
) of ASCII.
Implementation
factory CharacterSet.bitDigit() {
return CharacterSet.fromCharacters('01');
}