how to call service within service in angular 10 code example
Example: angular how to use service in class
import { <service name>Service } from '../<service path>';
you can inject service in components constructor:
constructor(public anyService: Service){}