SignButton constructor

const SignButton({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. Widget? icon,
  5. EdgeInsets padding = EdgeInsets.zero,
  6. void onPressed()?,
})

Implementation

const SignButton({
  super.key,
  required this.title,
  this.subtitle,
  this.icon,
  this.padding = EdgeInsets.zero,
  this.onPressed,
});