copyWith method
Implementation
@override
MessageVideoNote copyWith({
VideoNote? videoNote,
bool? isViewed,
bool? isSecret,
}) =>
MessageVideoNote(
videoNote: videoNote ?? this.videoNote,
isViewed: isViewed ?? this.isViewed,
isSecret: isSecret ?? this.isSecret,
);