BaseBtn constructor
const
BaseBtn({
- Key? key,
- required String text,
- VoidCallback? onPressed,
Implementation
const BaseBtn({
Key? key,
required this.text,
this.onPressed,
}) : super(key: key);