RequestResult<T> constructor

RequestResult<T>({
  1. T? value,
  2. String? error,
})

Implementation

RequestResult({
  this.value,
  this.error,
});