SmallOutlinedButton constructor
const
SmallOutlinedButton({
- Key? key,
- required String title,
- VoidCallback? onPressed,
- bool isEnabled = true,
Implementation
const SmallOutlinedButton({
final Key? key,
required final String title,
final VoidCallback? onPressed,
final bool isEnabled = true,
}) : _isEnabled = isEnabled,
_key = key,
_title = title,
_onPressed = onPressed;