copyWith method

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

Implementation

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