RecoveryConfig.fromJson constructor
RecoveryConfig.fromJson(
- 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,
);