ChalonaGrid<T extends DataMap> constructor

ChalonaGrid<T extends DataMap>({
  1. Key? key,
  2. required DataListMap<T> source,
  3. required List<ChalonaGridHeader> headers,
  4. required GridDetailFn<T> detail,
  5. dynamic onTapRow(
    1. T x
    )?,
  6. double headerHeight = 50,
  7. double rowHeight = 50,
})

Implementation

ChalonaGrid({
  super.key,
  required this.source,
  required this.headers,
  required this.detail,
  this.onTapRow,
  this.headerHeight = 50,
  this.rowHeight = 50,
});