copyWith method
PaidReactor
copyWith({
- MessageSender? senderId,
- int? starCount,
- bool? isTop,
- bool? isMe,
- 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,
);