GoogleAccountDetails typedef

GoogleAccountDetails = ({String email, String fullName, String image, String name, String userIdentifier})

Details of the Google Account.

Implementation

typedef GoogleAccountDetails = ({
  /// Google's user identifier for this account.
  String userIdentifier,

  /// The verified email received from Google.
  String email,
  String name,
  String fullName,
  String image
});