DataTableThemeModifier constructor
const
DataTableThemeModifier({
- Key? key,
- Key? modifierKey,
- Widget? child,
- 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,
});