macroGetAll method

Future<Map<String, dynamic>> macroGetAll()
inherited

macroGetAll -> /v1/macros

Requests a list of all the configured macros.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "array",
  "required": []
}

Implementation

Future<Map<String, dynamic>> macroGetAll() async {
  String url = '/v1/macros';

  return await call('get', url, httpAccept: 'application/json');
}