copyWithWrapped method
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));
}