copyWith method
Implementation
PushMessageContentVoiceNote copyWith({
VoiceNote? voiceNote,
bool? isPinned,
}) => PushMessageContentVoiceNote(
voiceNote: voiceNote ?? this.voiceNote,
isPinned: isPinned ?? this.isPinned,
);
PushMessageContentVoiceNote copyWith({
VoiceNote? voiceNote,
bool? isPinned,
}) => PushMessageContentVoiceNote(
voiceNote: voiceNote ?? this.voiceNote,
isPinned: isPinned ?? this.isPinned,
);