Pivot constructor

Pivot(
  1. WidgetModel? parent, {
  2. String? id,
  3. String? row,
  4. String? column,
  5. String? field,
})

Implementation

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