toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allocatedStorageBytes = this.allocatedStorageBytes;
final databaseName = this.databaseName;
final parentDatabaseDeployment = this.parentDatabaseDeployment;
final schemas = this.schemas;
return {
'allocatedStorageBytes': ?allocatedStorageBytes,
'databaseName': ?databaseName,
'parentDatabaseDeployment': ?parentDatabaseDeployment,
'schemas': ?schemas,
};
}