addRowFromMap method

void addRowFromMap(
  1. RecordRowMap rowMap
)

Add a new row represented by rowMap of the structure {columnName: record} to the end of the dataframe.

Implementation

void addRowFromMap(RecordRowMap rowMap) =>
    add([for (final name in _trackedColumnNames) rowMap[name]]);