ConversationMessage.fromJson constructor

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

Implementation

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