copyWith method

SetChatSlowModeDelay copyWith({
  1. int? chatId,
  2. int? slowModeDelay,
})

Implementation

SetChatSlowModeDelay copyWith({
  int? chatId,
  int? slowModeDelay,
}) =>
    SetChatSlowModeDelay(
      chatId: chatId ?? this.chatId,
      slowModeDelay: slowModeDelay ?? this.slowModeDelay,
    );