RecoveryConfig.fromJson constructor

RecoveryConfig.fromJson(
  1. Map json_
)

Implementation

RecoveryConfig.fromJson(core.Map json_)
    : this(
        scheduledSnapshotsConfig:
            json_.containsKey('scheduledSnapshotsConfig')
                ? ScheduledSnapshotsConfig.fromJson(
                    json_['scheduledSnapshotsConfig']
                        as core.Map<core.String, core.dynamic>)
                : null,
      );