TextButtonThemeModifier constructor
const
TextButtonThemeModifier({
- Key? key,
- Widget? child,
- Key? modifierKey,
- required TextButtonThemeData data,
Create a TextButtonTheme.
The data
parameter must not be null.
Implementation
const TextButtonThemeModifier({
super.key,
super.child,
super.modifierKey,
required this.data,
});