removeRow method
If sheet
exists and rowIndex < maxRows
then it removes row at index = rowIndex
Implementation
void removeRow(String sheet, int rowIndex) {
if (rowIndex >= 0 && _sheetMap[sheet] != null) {
_sheetMap[sheet]!.removeRow(rowIndex);
}
}