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
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