NicePivotGrid constructor

const NicePivotGrid({
  1. Key? key,
  2. required List<Map<String, dynamic>> data,
  3. required List<NicePivotField> fields,
  4. bool showFieldChooser = false,
  5. bool showGrandTotals = true,
})

Implementation

const NicePivotGrid({
  super.key,
  required this.data,
  required this.fields,
  this.showFieldChooser = false,
  this.showGrandTotals = true,
});