copyWith method

ShopifySharpNoteAttribute copyWith({
  1. String? name,
  2. dynamic value,
})

Implementation

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