AbiErrorFragment.fromJson constructor
Creates an instance of AbiErrorFragment from JSON representation.
Implementation
factory AbiErrorFragment.fromJson(Map<String, dynamic> json, bool tronTypes) {
final List<dynamic> inputs = json["inputs"] ?? [];
return AbiErrorFragment(
inputs: inputs.map((e) => AbiParameter.fromJson(e, tronTypes)).toList(),
name: json["name"]);
}