copyWith method

AllowUnpaidMessagesFromUser copyWith({
  1. int? userId,
  2. bool? refundPayments,
})

Implementation

AllowUnpaidMessagesFromUser copyWith({int? userId, bool? refundPayments}) =>
    AllowUnpaidMessagesFromUser(
      userId: userId ?? this.userId,
      refundPayments: refundPayments ?? this.refundPayments,
    );