MhItemsView<T> constructor

MhItemsView<T>({
  1. Key? key,
  2. required List<T> itemsSource,
  3. List<MhItemsViewColumnDef<T>>? columnDefs,
  4. MhItemsViewSettings<T>? settings,
  5. MhItemsViewTheme? theme,
  6. MhItemsViewTheme? themeDark,
  7. String debugName = "noName",
})

Implementation

MhItemsView({
  super.key,
  required this.itemsSource,
  this.columnDefs,
  this.settings,
  this.theme,
  this.themeDark,
  this.debugName = "noName",
});