LoadingIndicator constructor

const LoadingIndicator({
  1. Key? key,
  2. double radius = 20.0,
  3. Brightness? brightness,
  4. bool showBackground = false,
})

Implementation

const LoadingIndicator({
  super.key,
  this.radius = 20.0,
  this.brightness,
  this.showBackground = false,
});