ReplicationRunStageDetails.fromJson constructor
Implementation
factory ReplicationRunStageDetails.fromJson(Map<String, dynamic> json) {
return ReplicationRunStageDetails(
stage: json['stage'] as String?,
stageProgress: json['stageProgress'] as String?,
);
}