NuntioButton constructor

NuntioButton({
  1. required Color color,
  2. required Widget child,
  3. required void onPressed()?,
  4. String? disabledTipnote,
  5. bool? darken,
  6. bool? loading,
  7. bool? disabled,
  8. EdgeInsets? padding,
  9. bool? filled,
})

Implementation

NuntioButton({
  required this.color,
  required this.child,
  required this.onPressed,
  this.disabledTipnote,
  this.darken,
  this.loading,
  this.disabled,
  this.padding,
  this.filled,
});