authenticateBusinessCredentials method

Future<bool> authenticateBusinessCredentials()

Implementation

Future<bool> authenticateBusinessCredentials() async {
  //ToDo: Use the authenticated user credentials, and then push to the server (standard backend), to authenticate the user.

  //ToDo: use the app_settings from the config service that is avialable herein, to ensure we have the correct endpoint.

  //ToDo: set the business credentials here on the auth service, to ensure they are always present.

  //ToDo: push the request, convert the response and then return the result, being a success or failure.

  return false;
}