StatusWidget constructor

const StatusWidget({
  1. Key? key,
  2. required StatusType type,
  3. String? title,
  4. TextStyle? titleStyle,
  5. String? description,
  6. TextStyle? descriptionStyle,
  7. Widget? cta,
  8. Widget? placeholder,
})

Implementation

const StatusWidget({
  super.key,
  required this.type,
  this.title,
  this.titleStyle,
  this.description,
  this.descriptionStyle,
  this.cta,
  this.placeholder,
});