copyWith method

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

Implementation

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