copyWith method

PaidReactor copyWith({
  1. MessageSender? senderId,
  2. int? starCount,
  3. bool? isTop,
  4. bool? isMe,
  5. bool? isAnonymous,
})

Implementation

PaidReactor copyWith({
  MessageSender? senderId,
  int? starCount,
  bool? isTop,
  bool? isMe,
  bool? isAnonymous,
}) => PaidReactor(
  senderId: senderId ?? this.senderId,
  starCount: starCount ?? this.starCount,
  isTop: isTop ?? this.isTop,
  isMe: isMe ?? this.isMe,
  isAnonymous: isAnonymous ?? this.isAnonymous,
);