isHealthConnectIntegrationEnabled method
Implementation
Future<bool> isHealthConnectIntegrationEnabled() async {
if (!Platform.isAndroid) {
return false;
}
return await NativeSDKBridgeV3.isHealthConnectIntegrationEnabled(
connectionId: connectionId,
);
}