copyWith method

SetChatDescription copyWith({
  1. int? chatId,
  2. String? description,
})

Implementation

SetChatDescription copyWith({
  int? chatId,
  String? description,
}) =>
    SetChatDescription(
      chatId: chatId ?? this.chatId,
      description: description ?? this.description,
    );