copyWith method
Implementation
ShopifySharpNoteAttribute copyWith({String? name, dynamic value}) {
return ShopifySharpNoteAttribute(
name: name ?? this.name,
value: value ?? this.value,
);
}
ShopifySharpNoteAttribute copyWith({String? name, dynamic value}) {
return ShopifySharpNoteAttribute(
name: name ?? this.name,
value: value ?? this.value,
);
}