maskGetAll method

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

maskGetAll -> /v1/masks

Requests a list of all configured masks.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

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

Implementation

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

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