copyWith method
Implementation
PollOptionProperties copyWith({
bool? canBeDeleted,
bool? canBeReplied,
bool? canBeRepliedInAnotherChat,
bool? canGetLink,
}) => PollOptionProperties(
canBeDeleted: canBeDeleted ?? this.canBeDeleted,
canBeReplied: canBeReplied ?? this.canBeReplied,
canBeRepliedInAnotherChat:
canBeRepliedInAnotherChat ?? this.canBeRepliedInAnotherChat,
canGetLink: canGetLink ?? this.canGetLink,
);