clear method
Implementation
void clear(int value) {
for (Uint8List aByte in _bytes) {
aByte.fillRange(0, aByte.length, value);
}
}
void clear(int value) {
for (Uint8List aByte in _bytes) {
aByte.fillRange(0, aByte.length, value);
}
}