toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final autonomousDatabase = this.autonomousDatabase;
final displayName = this.displayName;
final labels = this.labels;
final name = this.name;
final properties = this.properties;
return {
'autonomousDatabase': ?autonomousDatabase,
'displayName': ?displayName,
'labels': ?labels,
'name': ?name,
'properties': ?properties,
};
}