SignButton constructor
- Key? key,
- required String title,
- String? subtitle,
- Widget? icon,
- EdgeInsets padding = EdgeInsets.zero,
- void onPressed()?,
Implementation
const SignButton({
super.key,
required this.title,
this.subtitle,
this.icon,
this.padding = EdgeInsets.zero,
this.onPressed,
});