AtSyncIndicator constructor

const AtSyncIndicator({
  1. Key? key,
  2. double? value,
  3. Color? backgroundColor,
  4. Color? color,
  5. double radius = _kDefaultIndicatorRadius,
})

Implementation

const AtSyncIndicator({
  Key? key,
  this.value,
  this.backgroundColor,
  this.color,
  this.radius = _kDefaultIndicatorRadius,
}) : super(key: key);