ListoDataTable<T> constructor

const ListoDataTable<T>({
  1. Key? key,
  2. required String title,
  3. required List<T> data,
  4. required Map<String, Widget Function(T)> formattedValues,
  5. required Map<String, Comparator<T>> sortableValues,
  6. String? subtitle,
  7. bool? subtitleTagValue,
})

Implementation

const ListoDataTable({
  super.key,
  required this.title,
  required this.data,
  required this.formattedValues,
  required this.sortableValues,
  this.subtitle,
  this.subtitleTagValue,
});