userPhotoURL property

String userPhotoURL

Returns the URL of the user's icon registered on the authentication platform during sign-in.

Basically, it is used to obtain icons registered on social networking sites. (Some SNS platforms may not be able to obtain this information.)

サインイン時、認証プラットフォームに登録されたのユーザーアイコンのURLを返します。

基本的にSNSで登録されているアイコンを取得するために利用します。 (SNSプラットフォームによっては取得できない場合もあります。)

Implementation

String get userPhotoURL => !isSignedIn ? "" : active.get(userPhotoURLKey, "");