AutoMigrationConfig.fromJson constructor

AutoMigrationConfig.fromJson(
  1. Map json_
)

Implementation

AutoMigrationConfig.fromJson(core.Map json_)
  : this(
      autoMigrationEnabled: json_['autoMigrationEnabled'] as core.bool?,
      name: json_['name'] as core.String?,
      updateTime: json_['updateTime'] as core.String?,
    );