AppLoadingIndicator constructor

const AppLoadingIndicator({
  1. Key? key,
  2. Color color = const Color(0xff000000),
  3. double scale = 1,
})

Implementation

const AppLoadingIndicator({
  super.key,
  this.color = const Color(0xff000000),
  this.scale = 1,
});