setAsciiString method
Implementation
void setAsciiString(String value) {
for (var i = 0; value.length > i; i++) {
this[i] = value.codeUnitAt(i);
}
}
void setAsciiString(String value) {
for (var i = 0; value.length > i; i++) {
this[i] = value.codeUnitAt(i);
}
}