NodeEthereumAttributes.fromJson constructor

NodeEthereumAttributes.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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