SundayTextButton constructor
const
SundayTextButton({
- Key? key,
- required VoidCallback onPressed,
- Color? color,
- TextStyle? textStyle,
- required Style style,
- required Widget child,
- EdgeInsetsGeometry? padding,
Creates a SundayTextButton.
The text
, onPressed
, style
, and child
parameters must not be null.
Implementation
const SundayTextButton({
super.key,
required this.onPressed,
this.color,
this.textStyle,
required this.style,
required this.child,
this.padding,
});