getLedgerInfo method

Future getLedgerInfo()

Implementation

Future<dynamic> getLedgerInfo() async {
  final path = "$endpoint";
  final resp = await http.get(path);
  return resp.data;
}