LoadableItemView constructor

const LoadableItemView({
  1. required Widget child,
  2. required OperationState requestState,
  3. required Widget errorWidget,
  4. EdgeInsetsGeometry? padding,
  5. Color? backgroundColor,
  6. Key? key,
})

Implementation

const LoadableItemView({
  required this.child,
  required this.requestState,
  required this.errorWidget,
  this.padding,
  this.backgroundColor,
  super.key,
});