copyWith method

UpdateUserSubscription copyWith({
  1. int? userId,
  2. String? payload,
  3. bool? isCanceled,
  4. bool? isRestored,
  5. bool? isPaymentFailed,
})

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,
);