findContact method

Future findContact()

Set contact through contact query

Implementation

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