toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final agentInfo = this.agentInfo;
  final customerSatisfactionRating = this.customerSatisfactionRating;
  final feedbackLabels = this.feedbackLabels;
  final menuPath = this.menuPath;
  final waitDuration = this.waitDuration;
  return {
    'agentInfo': ?agentInfo,
    'customerSatisfactionRating': ?customerSatisfactionRating,
    'feedbackLabels': ?feedbackLabels,
    'menuPath': ?menuPath,
    'waitDuration': ?waitDuration,
  };
}