copyWith method

SubscriptionFeatures copyWith({
  1. Feat? feat,
})

Implementation

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