AuthenticationService constructor

AuthenticationService({
  1. required String clientId,
  2. required String clientSecret,
  3. required String authorizationEndpoint,
  4. required String tokenEndpoint,
  5. required String revocationEndpoint,
})

Implementation

AuthenticationService(
    {required this.clientId,
    required this.clientSecret,
    required this.authorizationEndpoint,
    required this.tokenEndpoint,
    required this.revocationEndpoint});