CallServerTypeTelegramReflector.fromJson constructor

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

Parse from a json

Implementation

factory CallServerTypeTelegramReflector.fromJson(Map<String, dynamic> json) =>
    CallServerTypeTelegramReflector(
      peerTag: json['peer_tag'],
      isTcp: json['is_tcp'],
    );