I need to remove the method get from my User class, for instance
export class User {
password: string;
public setPassword(password: string): void {
this.password= password;
}
// exclude or remove
public getPassword(): string {
return this.password;
}
}
I do not want to transmit this information to Firebase Database