copyWithWrapped method

ItemImportRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? secret,
  3. Wrapped<List<Products>>? products,
  4. Wrapped<ItemImportRequestUserAuth>? userAuth,
  5. Wrapped<ItemImportRequestOptions?>? options,
})

Implementation

ItemImportRequest copyWithWrapped(
    {Wrapped<String?>? clientId,
    Wrapped<String?>? secret,
    Wrapped<List<enums.Products>>? products,
    Wrapped<ItemImportRequestUserAuth>? userAuth,
    Wrapped<ItemImportRequestOptions?>? options}) {
  return ItemImportRequest(
      clientId: (clientId != null ? clientId.value : this.clientId),
      secret: (secret != null ? secret.value : this.secret),
      products: (products != null ? products.value : this.products),
      userAuth: (userAuth != null ? userAuth.value : this.userAuth),
      options: (options != null ? options.value : this.options));
}