LoadingIndicator constructor

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

Implementation

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