copyWithWrapped method
Implementation
ShopifySharpNoteAttribute copyWithWrapped({
Wrapped<String?>? name,
Wrapped<dynamic>? value,
}) {
return ShopifySharpNoteAttribute(
name: (name != null ? name.value : this.name),
value: (value != null ? value.value : this.value),
);
}