getTable method

ExcelTable? getTable(
  1. String name
)
inherited

Returns the table named name (case-insensitive), or null if there is none.

Implementation

ExcelTable? getTable(String name) {
  final lower = name.toLowerCase();
  for (final t in _tables) {
    if (t.name.toLowerCase() == lower) return t;
  }
  return null;
}