FakeUser constructor

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

Any of the given parameters can be null.

Implementation

const FakeUser({
  this.id,
  this.email,
  this.displayName,
  this.photoUrl,
  this.serverAuthCode,
  this.idToken,
  this.accessToken,
});