getMobileUserId method

Future<int?> getMobileUserId()

The current saved mobile user id in the MBAudienceIdsManager instance. @returns a Future that completes with the current saved mobile user id.

Implementation

Future<int?> getMobileUserId() async {
  return _idsManager.getMobileUserId();
}