isAvailable function

Future<bool> isAvailable()

Android: Whether Health Connect is available on the current device. iOS: Always return true.

Implementation

Future<bool> isAvailable() async {
  return await VitalHealthPlatform.instance.isAvailable();
}