copyWith method

  1. @override
PageBlockChatLink copyWith({
  1. String? title,
  2. ChatPhotoInfo? photo,
  3. String? username,
})
override

Implementation

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