copyWithWrapped method

WebApiModulesPluginsShopifyValidateShopURLResponse copyWithWrapped({
  1. Wrapped<bool?>? shopURLValid,
})

Implementation

WebApiModulesPluginsShopifyValidateShopURLResponse copyWithWrapped({
  Wrapped<bool?>? shopURLValid,
}) {
  return WebApiModulesPluginsShopifyValidateShopURLResponse(
    shopURLValid: (shopURLValid != null
        ? shopURLValid.value
        : this.shopURLValid),
  );
}