ResumeSessionResponse.fromJson constructor
Implementation
factory ResumeSessionResponse.fromJson(Map<String, dynamic> json) {
return ResumeSessionResponse(
sessionId: json['SessionId'] as String?,
streamUrl: json['StreamUrl'] as String?,
tokenValue: json['TokenValue'] as String?,
);
}