isBinary method
Checks if contains binary characters.
Implementation
bool isBinary() {
RegExp regex = RegExp(r'\ufffd');
return regex.hasMatch(this);
}
Checks if contains binary characters.
bool isBinary() {
RegExp regex = RegExp(r'\ufffd');
return regex.hasMatch(this);
}