StateXScopedBuilder constructor

StateXScopedBuilder({
  1. required StateXStore store,
  2. required CallState onState,
  3. List<Object>? states,
  4. CallLoading? onLoading,
  5. CallError? onError,
})

Implementation

StateXScopedBuilder({
  required this.store,
  required this.onState,
  this.states,
  this.onLoading,
  this.onError,
});