v1GetSmartContractInterfacesResponse.fromJson constructor
Implementation
factory v1GetSmartContractInterfacesResponse.fromJson(Map<String, dynamic> json) {
final _smartContractInterfaces = (json['smartContractInterfaces'] as List).map((e) => v1SmartContractInterface.fromJson(e as Map<String, dynamic>)).toList();
return v1GetSmartContractInterfacesResponse(
smartContractInterfaces: _smartContractInterfaces,
);
}