checkBasicNodeHealth method

Future<String> checkBasicNodeHealth()

Implementation

Future<String> checkBasicNodeHealth() async {
  final path = "$endpoint/-/healthy";
  final resp = await http.get(path);
  return resp.data["message"];
}