CodeNestTextBtn constructor
const
CodeNestTextBtn({
- Key? key,
- required String label,
- required VoidCallback? onPressed,
- bool isLoading = false,
- Color? foregroundColor,
- TextStyle? textStyle,
- EdgeInsetsGeometry padding = const EdgeInsets.symmetric(vertical: 14, horizontal: 24),
Implementation
const CodeNestTextBtn({
super.key,
required this.label,
required this.onPressed,
this.isLoading = false,
this.foregroundColor,
this.textStyle,
this.padding = const EdgeInsets.symmetric(vertical: 14, horizontal: 24),
});