toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final content = this.content;
  final createTime = this.createTime;
  final languageCode = this.languageCode;
  final messageAnnotation = this.messageAnnotation;
  final name = this.name;
  final participant = this.participant;
  final participantRole = this.participantRole;
  final sendTime = this.sendTime;
  final sentimentAnalysis = this.sentimentAnalysis;
  return {
    'content': ?content,
    'createTime': ?createTime,
    'languageCode': ?languageCode,
    'messageAnnotation': ?messageAnnotation,
    'name': ?name,
    'participant': ?participant,
    'participantRole': ?participantRole,
    'sendTime': ?sendTime,
    'sentimentAnalysis': ?sentimentAnalysis,
  };
}