removeRow method

void removeRow(
  1. String sheet,
  2. int rowIndex
)

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);
  }
}