DataTableThemeModifier constructor

const DataTableThemeModifier({
  1. Key? key,
  2. Key? modifierKey,
  3. Widget? child,
  4. required DataTableThemeData data,
})

Constructs a data table theme that configures all descendant DataTable widgets.

The data must not be null.

Implementation

const DataTableThemeModifier({
  super.key,
  super.modifierKey,
  super.child,
  required this.data,
});