checkIfHealthDataAvailable method

  1. @override
Future<bool?> checkIfHealthDataAvailable()
override

implementation of checkIfHealthDataAvailable

Implementation

@override
Future<bool?> checkIfHealthDataAvailable() async {
  final status =
      await methodChannel.invokeMethod<dynamic>('checkIfHealthDataAvailable');
  return status;
}