No provider for Http! code example
Example 1: No provider for HttpClient!
import { HttpClientModule } from '@angular/common/http';
Example 2: No provider for HTTP! { HTTP Native}
// add the provider in the app module
import { HTTP } from '@ionic-native/http/ngx';
@NgModule({
providers: [
HTTP,
]
})