extendHeight method
Implementation
void extendHeight(int toValue) {
while (this.height() < toValue) {
this.s.add(List.filled(this.width(), null, growable: true));
}
}
void extendHeight(int toValue) {
while (this.height() < toValue) {
this.s.add(List.filled(this.width(), null, growable: true));
}
}