copyWith method

CloseChat copyWith({
  1. int? chatId,
})

Implementation

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