Hello!!!
import { Contact, ContactFindOptions } from ‘ionic-native’;
let contact:any = new Contact();
let options:any = new ContactFindOptions();
options.filter = "";
options.multiple = true;
var fields = ["displayName", "addresses"];
contact.find(fields, options).then((contactq) => {
this.data_all = contactq;
}, (err) => {
alert(err);
})
no result & no work! please help me