RaisedButtonWithProgress constructor

RaisedButtonWithProgress(
  1. String textString,
  2. Function? onPressed,
  3. Color buttonColor, {
  4. Key? key,
  5. Widget? widgetAfterCompletion,
})

Implementation

RaisedButtonWithProgress(
  this.textString,
  this.onPressed,
  this.buttonColor, {
  super.key,
  this.widgetAfterCompletion,
});