ReplicationRunStageDetails.fromJson constructor

ReplicationRunStageDetails.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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