userPhotoURL property

  1. @override
String? userPhotoURL
override

Please make sure to return the URL of the user's icon image.

Return null when signing out.

ユーザーのアイコン画像のURLを返すようにしてください。

サインアウト時はnullを返すようにしてください。

Implementation

@override
String? get userPhotoURL => !isSignedIn ? null : database.userPhotoURL;