requestToken abstract method

Future<String> requestToken(
  1. String username,
  2. String password
)

Requests a token the given username and password.

Returns a Future that resolves to a String containing the authentication token.

Implementation

Future<String> requestToken(String username, String password);