propGetAll method

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

propGetAll -> /v1/props

Gets a list of all the props.

RESPONSE 200:

The request was completed successfully.

content-type: application/json

schema:

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

Implementation

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

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