showOpenAPIExplorer method

Future showOpenAPIExplorer()

General ///

Implementation

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