toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final agentVersion = this.agentVersion;
  final description = this.description;
  final fulfillment = this.fulfillment;
  final name = this.name;
  final state = this.state;
  final textToSpeechSettings = this.textToSpeechSettings;
  final updateTime = this.updateTime;
  return {
    'agentVersion': ?agentVersion,
    'description': ?description,
    'fulfillment': ?fulfillment,
    'name': ?name,
    'state': ?state,
    'textToSpeechSettings': ?textToSpeechSettings,
    'updateTime': ?updateTime,
  };
}