FakeUser constructor

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

Implementation

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