getDocuments method Null safety

Future<Map<String, dynamic>> getDocuments()

Get all documents.

Returns a Map with all the documents from the Veryfi inbox.

Implementation

Future<Map<String, dynamic>> getDocuments() {
  return request(HTTPMethod.get, 'documents');
}