graphs method

Future<Map<String, dynamic>?> graphs()

Returns all graphs

Implementation

Future<Map<String, dynamic>?> graphs() async {
  Map<String, dynamic>? res;
  try {
    var request = client.prepareRequest('/_api/gharial', methode: 'get');
    res = await client.exec(request);
  } catch (e) {
    print(e);
  }
  return res;
}