UserImportRecord constructor

UserImportRecord({
  1. required String uid,
  2. String? email,
  3. bool? emailVerified,
  4. String? displayName,
  5. String? phoneNumber,
  6. String? photoURL,
  7. bool? disabled,
  8. UserMetadataRequest? metadata,
  9. List<UserProviderRequest>? providerData,
  10. Map<String, Object?>? customClaims,
  11. Uint8List? passwordHash,
  12. Uint8List? passwordSalt,
  13. String? tenantId,
  14. MultiFactorUpdateSettings? multiFactor,
})

Implementation

UserImportRecord({
  required this.uid,
  this.email,
  this.emailVerified,
  this.displayName,
  this.phoneNumber,
  this.photoURL,
  this.disabled,
  this.metadata,
  this.providerData,
  this.customClaims,
  this.passwordHash,
  this.passwordSalt,
  this.tenantId,
  this.multiFactor,
});