LoadingWidget constructor

const LoadingWidget({
  1. Key? key,
  2. bool isCircularLoader = true,
  3. Color? loaderColor,
})

Implementation

const LoadingWidget({
  super.key,
  this.isCircularLoader = true,
  this.loaderColor,
});