copyWith method
InputMessageVideoNote
copyWith({
- InputVideoNote? videoNote,
- MessageSelfDestructType? selfDestructType,
Implementation
InputMessageVideoNote copyWith({
InputVideoNote? videoNote,
MessageSelfDestructType? selfDestructType,
}) => InputMessageVideoNote(
videoNote: videoNote ?? this.videoNote,
selfDestructType: selfDestructType ?? this.selfDestructType,
);