ChipThemeModifier constructor
const
ChipThemeModifier({
- Key? key,
- Widget? child,
- Key? modifierKey,
- required ChipThemeData data,
Applies the given theme data
to child
.
The data
and child
arguments must not be null.
Implementation
const ChipThemeModifier({
super.key,
super.child,
super.modifierKey,
required this.data,
});