v1GetSmartContractInterfaceResponse.fromJson constructor
Implementation
factory v1GetSmartContractInterfaceResponse.fromJson(
Map<String, dynamic> json) {
final _smartContractInterface = externaldatav1SmartContractInterface
.fromJson(json['smartContractInterface'] as Map<String, dynamic>);
return v1GetSmartContractInterfaceResponse(
smartContractInterface: _smartContractInterface,
);
}