decodeTuple static method

(List, int) decodeTuple(
  1. List<SolType> types,
  2. Uint8List data,
  3. int offset
)

Implementation

static (List<dynamic>, int) decodeTuple(
    List<SolType> types, Uint8List data, int offset) {
  return _decodeTuple(types, data, offset);
}