copyWith method

Implementation

WebApiModulesIntegrationsStorefrontStorefrontTranslatedText copyWith({
  String? en,
  String? es,
  String? fr,
}) {
  return WebApiModulesIntegrationsStorefrontStorefrontTranslatedText(
    en: en ?? this.en,
    es: es ?? this.es,
    fr: fr ?? this.fr,
  );
}