copyWith method
Implementation
SuggestUserProfilePhoto copyWith({
int? userId,
InputChatPhoto? photo,
}) =>
SuggestUserProfilePhoto(
userId: userId ?? this.userId,
photo: photo ?? this.photo,
);
SuggestUserProfilePhoto copyWith({
int? userId,
InputChatPhoto? photo,
}) =>
SuggestUserProfilePhoto(
userId: userId ?? this.userId,
photo: photo ?? this.photo,
);