ReturnValue constructor

const ReturnValue({
  1. String? value,
  2. ReturnValueError? error,
})

Implementation

const ReturnValue({
  this.value,
  this.error,
});