ExpansionTileThemeModifier constructor

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

Applies the given theme data to child.

The data and child arguments must not be null.

Implementation

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