GoogleAccountDetails typedef
GoogleAccountDetails = ({String email, String? fullName, Uri? image, String? name, String userIdentifier, bool? verifiedEmail})
Details of the Google Account.
All nullable fields are not guaranteed to be available from Google OpenID docs, since the user may have not granted the app access to their profile or if the user is part of an organization that has restricted access to profile information.
Implementation
typedef GoogleAccountDetails = ({
/// Google's user identifier for this account.
String userIdentifier,
/// The verified email received from Google.
String email,
/// The user's given name.
String? name,
/// The user's full name.
String? fullName,
/// The user's profile image URL.
Uri? image,
/// Whether the email is verified.
bool? verifiedEmail,
});