getIdRegistryEventByAddress method

Future<IdRegistryEvent> getIdRegistryEventByAddress(
  1. String address
)

Implementation

Future<IdRegistryEvent> getIdRegistryEventByAddress(String address) async {
  IdRegistryEventByAddressRequest request = IdRegistryEventByAddressRequest();
  request.address = utf8.encode(address);

  IdRegistryEvent response =
      await _hubService.hubClient.getIdRegistryEventByAddress(request);

  return response;
}