copyWith method
Implementation
@override
PageBlockChatLink copyWith({
String? title,
ChatPhotoInfo? photo,
String? username,
}) =>
PageBlockChatLink(
title: title ?? this.title,
photo: photo ?? this.photo,
username: username ?? this.username,
);