authorizeWithAgt method Null safety
Implementation
Future<String> authorizeWithAgt({
required List<String> scopes,
String? clientId,
String? redirectUri,
String? codeVerifier,
String? nonce,
}) async {
final agt = await _kauthApi.agt();
try {
return authorize(
clientId: clientId,
redirectUri: redirectUri,
scopes: scopes,
agt: agt,
codeVerifier: codeVerifier,
nonce: nonce,
);
} catch (e) {
rethrow;
}
}