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