LoadingIndicator constructor

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

Implementation

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