getGoogleHealthConnectElement method
Implementation
Future<GoogleHealthConnectElement?> getGoogleHealthConnectElement(
String id) async {
try {
return googleHealthConnectElementBox!.values
.firstWhere((element) => element.id == id);
} catch (_) {}
return null;
}