abiEncode method
Encodes the given value using the ABI encoding.
Implementation
EncoderResult abiEncode(dynamic value) {
final abi = ABICoder.fromType(type);
return abi.abiEncode(this, value);
}
Encodes the given value using the ABI encoding.
EncoderResult abiEncode(dynamic value) {
final abi = ABICoder.fromType(type);
return abi.abiEncode(this, value);
}