AnimatedIndicatorWidget constructor

const AnimatedIndicatorWidget({
  1. Key? key,
  2. required double size,
  3. required ImageProvider<Object>? image,
})

Creates an AnimatedIndicatorWidget.

Requires a size for the indicator and an optional image to display in the center.

Implementation

const AnimatedIndicatorWidget({
  super.key,
  required this.size,
  required this.image,
});