getContactID method

Future<String?> getContactID()

Implementation

Future<String?> getContactID() async {
  final destination = await _createTrackingDestination();
  Pam.contactID = destination.contactID ?? '';
  return destination.contactID;
}