GoogleSignInCommand constructor

const GoogleSignInCommand({
  1. required String email,
  2. required String displayName,
  3. required String id,
  4. String? photoUrl,
  5. String? accessToken,
  6. String? idToken,
})

Implementation

const GoogleSignInCommand({
  required this.email,
  required this.displayName,
  required this.id,
  this.photoUrl,
  this.accessToken,
  this.idToken,
});