copyWith method
Implementation
PushMessageContentVideoNote copyWith({
VideoNote? videoNote,
bool? isPinned,
}) => PushMessageContentVideoNote(
videoNote: videoNote ?? this.videoNote,
isPinned: isPinned ?? this.isPinned,
);
PushMessageContentVideoNote copyWith({
VideoNote? videoNote,
bool? isPinned,
}) => PushMessageContentVideoNote(
videoNote: videoNote ?? this.videoNote,
isPinned: isPinned ?? this.isPinned,
);