findContact method

Future findContact()

Set contact through contact query

Implementation

Future findContact() async {
  ContactQuery query = new ContactQuery();
  Contact? contact = await query.queryContact(this._address);
  if (contact != null) {
    this._contact = contact;
  }
}