LoadingIndicator constructor

const LoadingIndicator({
  1. Key? key,
  2. required double size,
  3. required double borderWidth,
  4. Color? color,
})

Implementation

const LoadingIndicator({
  Key? key,
  required this.size,
  required this.borderWidth,
  this.color,
}) : super(key: key);