copyWith method
Implementation
ShopifySharpCustomerEmailMarketingConsent copyWith({
String? state,
String? optInLevel,
DateTime? consentUpdatedAt,
}) {
return ShopifySharpCustomerEmailMarketingConsent(
state: state ?? this.state,
optInLevel: optInLevel ?? this.optInLevel,
consentUpdatedAt: consentUpdatedAt ?? this.consentUpdatedAt,
);
}