toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appVersion = this.appVersion;
final channelType = this.channelType;
final deployment = this.deployment;
final endTime = this.endTime;
final entryAgent = this.entryAgent;
final inputTypes = this.inputTypes;
final languageCode = this.languageCode;
final messages = this.messages;
final name = this.name;
final source = this.source;
final startTime = this.startTime;
final turnCount = this.turnCount;
final turns = this.turns;
return {
'appVersion': ?appVersion,
'channelType': ?channelType,
'deployment': ?deployment,
'endTime': ?endTime,
'entryAgent': ?entryAgent,
'inputTypes': ?inputTypes,
'languageCode': ?languageCode,
'messages': ?messages,
'name': ?name,
'source': ?source,
'startTime': ?startTime,
'turnCount': ?turnCount,
'turns': ?turns,
};
}