IconRingIndicator constructor

IconRingIndicator({
  1. Key? key,
  2. required double size,
  3. Color indicatorColor = const Color(0xffb5bdc8),
  4. Color indicatorBackgroundColor = const Color(0xffe2e5e9),
  5. LoadingType? loadingType,
  6. Icon? icon,
})

Implementation

IconRingIndicator({
  Key? key,
  required this.size,
  this.indicatorColor = const Color(0xffb5bdc8),
  this.indicatorBackgroundColor = const Color(0xffe2e5e9),
  this.loadingType,
  this.icon,
}) : super(key: key);