copyWith method

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

Implementation

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