DividerThemeModifier constructor

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

Creates a divider theme that controls the configurations for Dividers, VerticalDividers, dividers between ListTiles, and dividers between rows in DataTables in its widget subtree.

Implementation

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