getMergedCells method
returns an Iterable of cell-Id
for the previously merged cell-Ids.
Implementation
List<String> getMergedCells(String sheet) {
return List<String>.from(
_sheetMap[sheet] != null ? _sheetMap[sheet]!.spannedItems : <String>[]);
}