copyWith method
Implementation
SharedChat copyWith({
int? chatId,
String? title,
String? username,
Photo? photo,
}) => SharedChat(
chatId: chatId ?? this.chatId,
title: title ?? this.title,
username: username ?? this.username,
photo: photo ?? this.photo,
);