decode method
Decodes the byte array using the specified ABI decoding.
Implementation
DecoderResult decode(List<int> bytes) {
final abi = ABICoder.fromType(type);
final decode = abi.decode(this, bytes);
return decode;
}
Decodes the byte array using the specified ABI decoding.
DecoderResult decode(List<int> bytes) {
final abi = ABICoder.fromType(type);
final decode = abi.decode(this, bytes);
return decode;
}