toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  if (this.chatActivity != null) {
    json[r'chat_activity'] = this.chatActivity;
  } else {
    json[r'chat_activity'] = null;
  }
  json[r'duration'] = this.duration;
  json[r'report'] = this.report;
  json[r'session_id'] = this.sessionId;
  json[r'video_reactions'] = this.videoReactions;
  return json;
}