StartOnDemandReplicationRunResponse.fromJson constructor

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

Implementation

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