EntityState<T> constructor

const EntityState<T>({
  1. T? data,
  2. bool isLoading = false,
  3. bool hasError = false,
  4. Exception? error,
})

Implementation

const EntityState({
  this.data,
  this.isLoading = false,
  this.hasError = false,
  this.error,
});