Credential constructor

Credential({
  1. required String id,
  2. String? accountType,
  3. String? familyName,
  4. String? givenName,
  5. String? name,
  6. String? password,
  7. String? profilePictureUri,
})

Implementation

Credential({
  required this.id,
  this.accountType,
  this.familyName,
  this.givenName,
  this.name,
  this.password,
  this.profilePictureUri,
});