When a method is deprecated, VS Code, helpfully puts the strikethrough on the method. It helps in the event that you're refactoring or fixing bugs/issues. But it can be an eyesore. Simply toggling the option from true or false in your settings.json folder, will get rid of this.
{
"editor.showDeprecated": false,
}