abi class

Abstract base class for handling Ethereum's Application Binary Interface (ABI).

The ABI is a data encoding scheme used in Ethereum for ABI encoding and interaction with contracts within Ethereum.

Properties

hashCode int
The hash code for this object.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

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

Operators

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

Static Methods

decode<T>(List<String> types, Uint8List value) List<T>
Decodes a list of types and values.
encode(List<String> types, List values) Uint8List
Encodes a list of types and values.