CreateRequest constructor

CreateRequest({
  1. bool? disabled,
  2. Object? displayName = _sentinel,
  3. String? email,
  4. bool? emailVerified,
  5. String? password,
  6. Object? phoneNumber = _sentinel,
  7. Object? photoURL = _sentinel,
  8. MultiFactorCreateSettings? multiFactor,
  9. String? uid,
})

Implementation

CreateRequest({
  super.disabled,
  super.displayName,
  super.email,
  super.emailVerified,
  super.password,
  super.phoneNumber,
  super.photoURL,
  this.multiFactor,
  this.uid,
}) : assert(
        multiFactor is! MultiFactorUpdateSettings,
        'MultiFactorUpdateSettings is not supported for create requests.',
      );