AuthProvider constructor
Implementation
AuthProvider({required String authEndpoint, required String tokenEndpoint}) {
securedStorage = SecuredStorage();
_flutterAppAuth = const FlutterAppAuth();
_authorizationServiceConfig = AuthorizationServiceConfiguration(
authorizationEndpoint: authEndpoint,
tokenEndpoint: tokenEndpoint,
);
}