CheckpointConfigurationDescription.fromJson constructor
CheckpointConfigurationDescription.fromJson(
- Map<String, dynamic> json
)
Implementation
factory CheckpointConfigurationDescription.fromJson(
Map<String, dynamic> json) {
return CheckpointConfigurationDescription(
checkpointInterval: json['CheckpointInterval'] as int?,
checkpointingEnabled: json['CheckpointingEnabled'] as bool?,
configurationType:
(json['ConfigurationType'] as String?)?.toConfigurationType(),
minPauseBetweenCheckpoints: json['MinPauseBetweenCheckpoints'] as int?,
);
}