toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final databaseInstalledVersion = this.databaseInstalledVersion;
final instanceCreateTime = this.instanceCreateTime;
final instanceTier = this.instanceTier;
final name = this.name;
return {
'databaseInstalledVersion': ?databaseInstalledVersion,
'instanceCreateTime': ?instanceCreateTime,
'instanceTier': ?instanceTier,
'name': ?name,
};
}