NodeEthereumAttributes.fromJson constructor
Implementation
factory NodeEthereumAttributes.fromJson(Map<String, dynamic> json) {
return NodeEthereumAttributes(
httpEndpoint: json['HttpEndpoint'] as String?,
webSocketEndpoint: json['WebSocketEndpoint'] as String?,
);
}