Angular - Performance Optimization
Given this Angular service code, what will be removed by tree shaking if
unusedMethod() is never called anywhere?export class DataService {
fetchData() { return 'data'; }
unusedMethod() { return 'not used'; }
}