copyWith method
Implementation
EditUserStarSubscription copyWith({
int? userId,
String? telegramPaymentChargeId,
bool? isCanceled,
}) => EditUserStarSubscription(
userId: userId ?? this.userId,
telegramPaymentChargeId:
telegramPaymentChargeId ?? this.telegramPaymentChargeId,
isCanceled: isCanceled ?? this.isCanceled,
);