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