LoadingView constructor

LoadingView({
  1. Key? key,
  2. Color? baseColor,
  3. Color? highlightColor,
  4. double? width,
  5. double? height,
  6. Widget? child,
})

Implementation

LoadingView({
  super.key,
  this.baseColor,
  this.highlightColor,
  this.width,
  this.height,
  this.child,
});