copyWith method

InputMessageVideoNote copyWith({
  1. InputVideoNote? videoNote,
  2. MessageSelfDestructType? selfDestructType,
})

Implementation

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