SynrgButton constructor

const SynrgButton({
  1. Key? key,
  2. void onPressed()?,
  3. String? text,
  4. RequestStatus? status,
})

Implementation

const SynrgButton({
  super.key,
  this.onPressed,
  this.text,
  this.status,
});