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