LoadingView<T> constructor

const LoadingView<T>({
  1. Key? key,
  2. Widget? child,
  3. bool showBackground = true,
  4. Color? color,
  5. String? tag,
  6. bool isCustomLoading = false,
  7. int quarterTurns = 0,
})

Implementation

const LoadingView({
  super.key,
  this.child,
  this.showBackground = true,
  this.color,
  this.tag,
  this.isCustomLoading = false,
  this.quarterTurns = 0,
});