LoadingIndicator constructor

const LoadingIndicator({
  1. Key? key,
  2. Color? color,
  3. double size = 20.0,
})

Implementation

const LoadingIndicator({
  super.key,
  this.color,
  this.size = 20.0,
});