copyWith method
Implementation
SetChatMessageAutoDeleteTime copyWith({
int? chatId,
int? messageAutoDeleteTime,
}) =>
SetChatMessageAutoDeleteTime(
chatId: chatId ?? this.chatId,
messageAutoDeleteTime:
messageAutoDeleteTime ?? this.messageAutoDeleteTime,
);