Tengo un problema, mi FormBuilder no funciona, escribe para mi este problema.
ERROR Error: No capturado (en promesa): Error: Type ImageService no tiene la propiedad 'ɵmod'. Error: Type ImageService no tiene la propiedad 'ɵmod'.
Esto está en mi pantalla ingrese la descripción de la imagen aquí
Mi módulo de enrutamiento es
import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { EmailComposerPage } from './email-composer.page'; import { FormsModule} from '@angular/forms' ; import { ImageService } from '../email-composer/image.service'; const routes: Routes = [ { path: '', component: EmailComposerPage } ]; @NgModule({ imports: [RouterModule.forChild(routes),FormsModule], exports: [RouterModule], providers: [ImageService], }) export class EmailComposerPageRoutingModule {}Mi ImageService es
import { Injectable } from '@angular/core'; import { EmailComposer } from '@ionic-native/email-composer'; @Injectable() export class EmailService { constructor(private _EMAIL : EmailComposer) { } /** * * @public * @method sendMail * @param to {string} The primary e-mail address * @param cc {string} The carbon copy e-mail address * @param bcc {string} The blank carbon copy e-mail address * @param attachment {string} The attachment to be sent * @param subject {string} The subject for the e-mail message * @param body {string} The message content * */ sendEmail(to : string, cc : string, bcc : string, attachment : string, subject : string, body : string) : void { // Use the plugin isAvailable method to check whether // the user has configured an email account this._EMAIL.isAvailable() .then((available: boolean) => { // Check that plugin has been granted access permissions to // user's e-mail account this._EMAIL.hasPermission() .then((isPermitted : boolean) => { // Define an object containing the // keys/values for populating the device // default mail fields when a new message // is created let email : any = { app : 'mailto', to : to, cc : cc, bcc : bcc, attachments : [ attachment ], subject : subject, body : body }; // Open the device e-mail client and create // a new e-mail message populated with the // object containing our message data this._EMAIL.open(email); }) .catch((error : any) => { console.log('No access permission granted'); console.dir(error); }); }) .catch((error : any) => { console.log('User does not appear to have device e-mail account'); console.dir(error); }); } }Por favor, ayuda, ¿cuál es el problema? Gracias