UpdateRequest constructor

UpdateRequest({
  1. bool? disabled,
  2. String? displayName,
  3. String? email,
  4. bool? emailVerified,
  5. String? password,
  6. String? phoneNumber,
  7. String? photoURL,
  8. MultiFactorUpdateSettings? multiFactor,
  9. UserProvider? providerToLink,
  10. List<String>? providersToUnlink,
})

Interface representing the properties to update on the provided user.

Implementation

UpdateRequest({
  super.disabled,
  String? super.displayName,
  super.email,
  super.emailVerified,
  super.password,
  String? super.phoneNumber,
  String? super.photoURL,
  this.multiFactor,
  this.providerToLink,
  this.providersToUnlink,
});