brownButtonWithProgress static method

RaisedButtonWithProgress brownButtonWithProgress(
  1. String textString, {
  2. VoidCallback? onPressed,
})

Implementation

static RaisedButtonWithProgress brownButtonWithProgress(String textString, {VoidCallback? onPressed}) {
  return RaisedButtonWithProgress(
    textString,
    onPressed,
    Colors.brown,
  );
}