row method

TwoColumnDetailList row(
  1. String left,
  2. String right
)

Adds a row to the list.

Implementation

TwoColumnDetailList row(String left, String right) {
  _rows.add((left, right));
  return this;
}