StatusIndicator constructor

const StatusIndicator({
  1. required String status,
  2. String? label,
  3. String size = '10px',
  4. bool pulse = false,
})

Implementation

const StatusIndicator({
  required this.status,
  this.label,
  this.size = '10px',
  this.pulse = false,
});