tables property

Map<String, Sheet> get tables

It will return tables as map in order to mimic the previous versions reading the data.

Implementation

Map<String, Sheet> get tables {
  if (this._sheetMap.isEmpty) {
    _damagedExcel(text: "Corrupted Excel file.");
  }
  return Map<String, Sheet>.from(this._sheetMap);
}