addRow method

VlDataset addRow(
  1. VlJson row
)

Adds a row that was built elsewhere.

row A JSON object whose members are the columns.

Returns This dataset, so calls chain.

Implementation

VlDataset addRow(VlJson row) {
  rows.add(row);
  return this;
}