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