apiurl top-level constant
List of API URLs used by the library.
The first element of the list is the primary API URL, and the others are fallback URLs in case the primary API is not available.
The URLs are used as a base URL for all API requests. For example, if the URL is "https://lsp-api-beta.mitrafintech.com/api/", and the version is "v1", the actual API URL used would be "https://lsp-api-beta.mitrafintech.com/api/v1/".
See also:
- getApiUrl, for constructing the full API URL from the base URL and version.
Implementation
const List<String> apiurl = [
"https://lsp-api-beta.mitrafintech.com/api/",
"https://lsp-api.mitrafintech.com/api/",
];