Pivot constructor
Pivot(
- WidgetModel? parent, {
- String? id,
- String? row,
- String? column,
- 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;
}