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