copyWith method

  1. @override
MessageSuggestProfilePhoto copyWith({
  1. ChatPhoto? photo,
})
override

Implementation

@override
MessageSuggestProfilePhoto copyWith({
  ChatPhoto? photo,
}) =>
    MessageSuggestProfilePhoto(
      photo: photo ?? this.photo,
    );