DecoderResult<T> class

Represents the result of decoding data using ABI decoding.

Constructors

DecoderResult({required T result, required int consumed})
Constructor for DecoderResult.
const

Properties

consumed int
The number of bytes consumed during decoding.
final
hashCode int
The hash code for this object.
no setterinherited
result → T
The decoded result of type T.
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
Overrides the default toString method to provide a readable representation of DecoderResult.
override

Operators

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