AbiInfo.fromJson constructor

AbiInfo.fromJson(Map<String, dynamic> json)

Implementation

AbiInfo.fromJson(Map<String, dynamic> json) {
  hash = json['hash'];
  entryPoint = json['entryPoint'];
  functions = List.from(json['functions'])
      .map((p) => AbiFunction.fromJson(p))
      .toList();
}