Pivot constructor
Pivot(})
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;
}