isHealthConnectIntegrationEnabled method

Future<bool> isHealthConnectIntegrationEnabled()

Implementation

Future<bool> isHealthConnectIntegrationEnabled() async {
  if (!Platform.isAndroid) {
    return false;
  }

  return await NativeSDKBridgeV3.isHealthConnectIntegrationEnabled(
    connectionId: connectionId,
  );
}