pathEnumToUrl method Null safety
- APIPath path
inherited
Get API Paths.
Returns a String containing the API path from the enum of available API paths.
Implementation
String pathEnumToUrl(APIPath path) {
switch (path) {
case APIPath.documents:
return '/partner/documents/';
}
}