Data<V> constructor

const Data<V>({
  1. V? value,
  2. Object? error,
  3. bool isLoading = false,
})

Implementation

const Data({
  this.value,
  this.error,
  this.isLoading = false,
});