Row-slice instance in-place.
void slice({int start = 0, int? end}) { if (start != 0) removeRange(0, start); if (end != null) removeRange(end, length); }