isHealthKitIntegrationEnabled method
Check if HealthKit integration in SpikeSDK is active or not
Implementation
Future<bool> isHealthKitIntegrationEnabled() async {
if (!Platform.isIOS) {
return false;
}
return await NativeSDKBridgeV3.isHealthKitIntegrationEnabled(
connectionId: connectionId,
);
}