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