LoadingView constructor

const LoadingView({
  1. Key? key,
  2. double radius = 24,
  3. BallStyle? ballStyle,
  4. int count = 11,
})

Implementation

const LoadingView({
  Key? key,
  double radius = 24,
  BallStyle? ballStyle,
  int count = 11,
}) : super(
        key: key,
        ballStyle: ballStyle,
        count: count,
        radius: radius,
      );