copyWith method

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

Implementation

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