documentTypes method

Future<MercadoObject> documentTypes()

This function gets a list of identification types available on MercadoPago

Implementation

Future<MercadoObject> documentTypes() async {
  final result = await _restService.get(
      path: '/v1/identification_types',
      accessToken: accessToken as String);

  return _apiResponse.response(result);
}