Result constructor

Result({
  1. Empty? undefined,
  2. Object? value,
})

Implementation

Result({
  this.undefined,
  this.value,
});