copyWithWrapped method

SignalReturnReportRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? secret,
  3. Wrapped<String>? clientTransactionId,
  4. Wrapped<String>? returnCode,
  5. Wrapped<DateTime?>? returnedAt,
})

Implementation

SignalReturnReportRequest copyWithWrapped(
    {Wrapped<String?>? clientId,
    Wrapped<String?>? secret,
    Wrapped<String>? clientTransactionId,
    Wrapped<String>? returnCode,
    Wrapped<DateTime?>? returnedAt}) {
  return SignalReturnReportRequest(
      clientId: (clientId != null ? clientId.value : this.clientId),
      secret: (secret != null ? secret.value : this.secret),
      clientTransactionId: (clientTransactionId != null
          ? clientTransactionId.value
          : this.clientTransactionId),
      returnCode: (returnCode != null ? returnCode.value : this.returnCode),
      returnedAt: (returnedAt != null ? returnedAt.value : this.returnedAt));
}