decodeABI method

Future<TestScilla> decodeABI({
  1. String? code,
})

Implementation

Future<TestScilla> decodeABI({String? code}) async {
  try {
    this.setCode(code);
    var abiObj = await this.getABI(code: code);
    this.setABI(abiObj);
    return this;
  } catch (error) {
    rethrow;
  }
}