ReceiveByeMessage.fromJson constructor
Implementation
ReceiveByeMessage.fromJson(Map<String, dynamic> json) {
jsonrpc = json['jsonrpc'];
id = json['id'];
method = json['method'];
params = json['params'] != null
? ReceiveByeParams.fromJson(json['params'])
: null;
}