toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deviceLocation = this.deviceLocation;
final language = this.language;
final maxDatabaseEntries = this.maxDatabaseEntries;
final maxUpdateEntries = this.maxUpdateEntries;
final region = this.region;
final supportedCompressions = this.supportedCompressions;
return {
'deviceLocation': ?deviceLocation,
'language': ?language,
'maxDatabaseEntries': ?maxDatabaseEntries,
'maxUpdateEntries': ?maxUpdateEntries,
'region': ?region,
'supportedCompressions': ?supportedCompressions,
};
}