copyWith method
Implementation
@override
PushMessageContentPoll copyWith({
String? question,
bool? isRegular,
bool? isPinned,
}) =>
PushMessageContentPoll(
question: question ?? this.question,
isRegular: isRegular ?? this.isRegular,
isPinned: isPinned ?? this.isPinned,
);