NeomageStatusIndicator constructor

const NeomageStatusIndicator({
  1. Key? key,
  2. required NeomageStatus status,
  3. String? label,
  4. double dotSize = 8,
  5. bool animated = true,
})

Implementation

const NeomageStatusIndicator({
  super.key,
  required this.status,
  this.label,
  this.dotSize = 8,
  this.animated = true,
});