copyWith method

Implementation

WebApiModulesIntegrationsStorefrontWebCatalogResponseField copyWith({
  String? value,
  String? text,
  bool? selected,
}) {
  return WebApiModulesIntegrationsStorefrontWebCatalogResponseField(
    value: value ?? this.value,
    text: text ?? this.text,
    selected: selected ?? this.selected,
  );
}