toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final apiVersion = this.apiVersion;
final avatarUri = this.avatarUri;
final classificationThreshold = this.classificationThreshold;
final defaultLanguageCode = this.defaultLanguageCode;
final description = this.description;
final displayName = this.displayName;
final enableLogging = this.enableLogging;
final matchMode = this.matchMode;
final parent = this.parent;
final supportedLanguageCodes = this.supportedLanguageCodes;
final tier = this.tier;
final timeZone = this.timeZone;
return {
'apiVersion': ?apiVersion,
'avatarUri': ?avatarUri,
'classificationThreshold': ?classificationThreshold,
'defaultLanguageCode': ?defaultLanguageCode,
'description': ?description,
'displayName': ?displayName,
'enableLogging': ?enableLogging,
'matchMode': ?matchMode,
'parent': ?parent,
'supportedLanguageCodes': ?supportedLanguageCodes,
'tier': ?tier,
'timeZone': ?timeZone,
};
}