VxStateSwitcher constructor

const VxStateSwitcher({
  1. Key? key,
  2. VxPageState? pageState,
  3. OnRetry? onRetry,
  4. Widget? skeleton,
  5. Widget? emptyView,
  6. Widget? errorView,
  7. Widget? child,
})

Implementation

const VxStateSwitcher({
  Key? key,
  this.pageState,
  this.onRetry,
  this.skeleton,
  this.emptyView,
  this.errorView,
  this.child,
}) : super(key: key);