copyWith method
Implementation
UpdateUserSubscription copyWith({
int? userId,
String? payload,
bool? isCanceled,
bool? isRestored,
bool? isPaymentFailed,
}) => UpdateUserSubscription(
userId: userId ?? this.userId,
payload: payload ?? this.payload,
isCanceled: isCanceled ?? this.isCanceled,
isRestored: isRestored ?? this.isRestored,
isPaymentFailed: isPaymentFailed ?? this.isPaymentFailed,
);