The injection token should be written in uppercase as 'REQUEST':
import { Inject, Optional, REQUEST } from '@angular/core';
// ...
constructor(
@Optional() @Inject(REQUEST) private request: Request | null
) { console.log('URL: ', this.request?.url); }