SessionResumptionUpdate.fromJson constructor
Implementation
factory SessionResumptionUpdate.fromJson(Map<String, dynamic> json) {
return SessionResumptionUpdate(
newHandle: json['newHandle'] ?? '',
resumable: json['resumable'] ?? false,
);
}