Pivot constructor

Pivot(
  1. Model? parent, {
  2. String? id,
  3. String? row,
  4. String? column,
  5. String? field,
  6. dynamic addSummaryRows,
})

Implementation

Pivot(Model? parent,
    {String? id, String? row, String? column, String? field, dynamic addSummaryRows})
    : super(parent, id) {
  this.row = row;
  this.column = column;
  this.field = field;
  this.addSummaryRows = addSummaryRows;
}