copyWith method
Implementation
SubscriptionFeatures copyWith({
Feat? feat,
}) {
return SubscriptionFeatures(
feat: feat ?? this.feat,
);
}
SubscriptionFeatures copyWith({
Feat? feat,
}) {
return SubscriptionFeatures(
feat: feat ?? this.feat,
);
}