DataState<T> constructor

const DataState<T>(
  1. T model, {
  2. bool isLoading = false,
  3. DataException? exception,
  4. StackTrace? stackTrace,
})

Implementation

const DataState(
  this.model, {
  this.isLoading = false,
  this.exception,
  this.stackTrace,
});