copyWith method

PushMessageContentVideoNote copyWith({
  1. VideoNote? videoNote,
  2. bool? isPinned,
})

Implementation

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