getIsBootstrapped method

Future<bool> getIsBootstrapped()

Whether identify (or the deprecated bootstrap path) has completed and entitlements have been fetched.

Adopters can poll this to know when the SDK is ready for purchase / entitlement-gated features after a fresh app launch.

Implementation

Future<bool> getIsBootstrapped() {
  return _wrap(() => _platform.getIsBootstrapped());
}