StatusIndicator constructor

const StatusIndicator({
  1. required StatusType status,
  2. String? label,
  3. String? size,
  4. bool pulse = false,
  5. Key? key,
})

Implementation

const StatusIndicator({
  required this.status,
  this.label,
  this.size,
  this.pulse = false,
  super.key,
});