removeRow method

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

Removes the row at rowIndex from sheet.

Implementation

void removeRow(String sheet, int rowIndex) {
  if (rowIndex >= 0 && _sheetMap[sheet] != null) {
    _sheetMap[sheet]!.removeRow(rowIndex);
  }
}