ResumeSessionResponse.fromJson constructor

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

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?,
  );
}