decode method

DecoderResult decode(
  1. List<int> bytes
)

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