getUserName method
Retrieves the user name obtained during the authorization process.
Note: Do not call this method before calling authorize().
Implementation
String? getUserName() {
return credential?.idToken.claims.name;
}
Retrieves the user name obtained during the authorization process.
Note: Do not call this method before calling authorize().
String? getUserName() {
return credential?.idToken.claims.name;
}