isAutoStartPropertyAvailable property

bool isAutoStartPropertyAvailable

Check if the properties for the Autostart are available and valid If beaconUrl and applicationId are available this will return true

Implementation

bool get isAutoStartPropertyAvailable {
  return !StringUtils.isStringNullEmptyOrWhitespace(_beaconUrl) &&
      !StringUtils.isStringNullEmptyOrWhitespace(_applicationId);
}