copyWith method
Implementation
WebApiModulesIntegrationsStorefrontSendInquiryEmailRequest copyWith({
String? catalogProductId,
String? warehouseId,
String? locationId,
String? firstName,
String? lastName,
String? phone,
String? email,
String? message,
}) {
return WebApiModulesIntegrationsStorefrontSendInquiryEmailRequest(
catalogProductId: catalogProductId ?? this.catalogProductId,
warehouseId: warehouseId ?? this.warehouseId,
locationId: locationId ?? this.locationId,
firstName: firstName ?? this.firstName,
lastName: lastName ?? this.lastName,
phone: phone ?? this.phone,
email: email ?? this.email,
message: message ?? this.message,
);
}