CallStateDiscarded.fromJson constructor
Parse from a json
Implementation
factory CallStateDiscarded.fromJson(Map<String, dynamic> json) => CallStateDiscarded(
reason: CallDiscardReason.fromJson(json['reason']),
needRating: json['need_rating'],
needDebugInformation: json['need_debug_information'],
);