decodeByAbi static method

dynamic decodeByAbi(
  1. List abiJson,
  2. String data
)

Implementation

static decodeByAbi(List<dynamic> abiJson, String data) {
  final decoder = AbiDecoder.fromABI(abiJson);
  return decoder.decodeParameters(data);
}