getToken property

dynamic get getToken

getToken method to get the token for authentication Every request will be sent with this token where needed

Example:

Service.setAuthToken("token");
print(Service.getToken); // token

Implementation

static get getToken => _authToken;