addRow method

void addRow(
  1. dynamic row
)

Implementation

void addRow(row) {
  if (_columnNames.isEmpty) {
    _columnNames.addAll(row);
  } else {
    _table.add(Map.fromIterables(_columnNames, row));
  }
}