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