toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final description = this.description;
  final displayName = this.displayName;
  final name = this.name;
  final nluSettings = this.nluSettings;
  final state = this.state;
  return {
    'createTime': ?createTime,
    'description': ?description,
    'displayName': ?displayName,
    'name': ?name,
    'nluSettings': ?nluSettings,
    'state': ?state,
  };
}