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