import { ForegroundService } from '@awesome-cordova-plugins/foreground-service/ngx';
constructor(public foregroundService: ForegroundService) { }
...
startService() {
this.foregroundService.start('GPS Running', 'Background Service', 'drawable/fsicon');
}
stopService() {
this.foregroundService.stop();
}