copyWith method

SignalDecisionReportResponse copyWith({
  1. String? requestId,
})

Implementation

SignalDecisionReportResponse copyWith({String? requestId}) {
  return SignalDecisionReportResponse(requestId: requestId ?? this.requestId);
}