getAuthenticationItemMap method

Map<String, dynamic> getAuthenticationItemMap()

Returns a map containing the authentication token required for API calls.

The token is retrieved from the authentication constants defined in the app.

Returns a Map<String, dynamic> containing the API token.

Implementation

Map<String, dynamic> getAuthenticationItemMap() {
  return {
    'token': kAuthentication_apiToken,
  };
}