copyWithWrapped method

Request$ copyWithWrapped({
  1. Wrapped<String?>? type,
  2. Wrapped<String?>? requestId,
  3. Wrapped<String?>? locale,
  4. Wrapped<DateTime?>? timestamp,
})

Implementation

Request$ copyWithWrapped(
    {Wrapped<String?>? type,
    Wrapped<String?>? requestId,
    Wrapped<String?>? locale,
    Wrapped<DateTime?>? timestamp}) {
  return Request$(
      type: (type != null ? type.value : this.type),
      requestId: (requestId != null ? requestId.value : this.requestId),
      locale: (locale != null ? locale.value : this.locale),
      timestamp: (timestamp != null ? timestamp.value : this.timestamp));
}