copyWith method

UpdateVideoPublished copyWith({
  1. int? chatId,
  2. int? messageId,
})

Implementation

UpdateVideoPublished copyWith({int? chatId, int? messageId}) =>
    UpdateVideoPublished(
      chatId: chatId ?? this.chatId,
      messageId: messageId ?? this.messageId,
    );