Result<T, E> class

Since Dart's inference of generics is very weak, this is the only implementation possible here.

Constructors

Result.err(E error)
const
Result.ok(T data)
const

Properties

data → T
no setter
error → E
no setter
hashCode int
The hash code for this object.
no setterinherited
isErr bool
no setter
isOk bool
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited