SessionResumptionUpdate.fromJson constructor

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

Implementation

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