ProgressButton constructor

const ProgressButton({
  1. String? text,
  2. dynamic error,
  3. GetStatus? status,
  4. Function? onPressed,
  5. Key? key,
})

Implementation

const ProgressButton({
  this.text,
  this.error,
  this.status,
  this.onPressed,
  Key? key,
}) : super(key: key);