openHealthConnectInstallation method

Future<void> openHealthConnectInstallation()

Implementation

Future<void> openHealthConnectInstallation() async {
  if (!Platform.isAndroid) {
    return;
  }

  await NativeSDKBridgeV3.openHealthConnectInstallation(
    connectionId: connectionId,
  );
}