RingingAckMessage.fromJson constructor

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

Implementation

RingingAckMessage.fromJson(Map<String, dynamic> json) {
  jsonrpc = json['jsonrpc'];
  id = json['id'];
  result = json['result'] != null
      ? RingingAckResult.fromJson(json['result'])
      : null;
}