PrimaryButton constructor

const PrimaryButton({
  1. Key? key,
  2. String title = '',
  3. TextStyle? style,
  4. void onPressed()?,
  5. bool danger = false,
  6. Widget? leading,
})

Implementation

const PrimaryButton({
  super.key,
  this.title = '',
  this.style,
  this.onPressed,
  this.danger = false,
  this.leading,
});