StandardTextButton constructor

const StandardTextButton({
  1. Key? key,
  2. required Widget child,
  3. Future<void> onPressed()?,
  4. ButtonStyle? style,
  5. Future<void> onError()?,
  6. Icon? icon,
  7. bool showLoadingIndicator = true,
})

Implementation

const StandardTextButton({
  super.key,
  required this.child,
  this.onPressed,
  this.style,
  this.onError,
  this.icon,
  this.showLoadingIndicator = true,
});