Googleサインインを使用してユーザーを作成し、Googleアカウントの表示写真と表示名を使用したいので、firebaseからdisplayName name photoUrlを取得しようとしています。
child: ListTile(
title: Text("${user.displayName}"),
subtitle: Text("${user.username}"),
leading: CachedNetworkImage(
imageUrl: user.photoUrl,
placeholder: (context, url) => circularProgress(),
),
),