authenticate abstract method

Future<Set<Token>> authenticate({
  1. required String username,
  2. required String password,
  3. required Set<Webservice> webservices,
})

Authenticates the user with the given username and password for the given webservices.

Implementation

Future<Set<Token>> authenticate({required String username, required String password, required Set<Webservice> webservices});