UpdateCall.fromJson constructor

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

Parse from a json

Implementation

factory UpdateCall.fromJson(Map<String, dynamic> json) => UpdateCall(
  call: Call.fromJson(json['call']),
  extra: json['@extra'],
  clientId: json['@client_id'],
);