LoadableView constructor

const LoadableView({
  1. required Widget child,
  2. required bool isLoading,
  3. EdgeInsetsGeometry? padding,
  4. Color? backgroundColor,
  5. Animation<Color>? indicatorColor,
  6. Key? key,
})

Implementation

const LoadableView({
  required this.child,
  required this.isLoading,
  this.padding,
  this.backgroundColor,
  this.indicatorColor,
  super.key,
});