toJson method

Map<String, dynamic> toJson()

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,
  };
}