ServerUpdateEmailInput constructor

  1. @JsonSerializable(includeIfNull: false)
const ServerUpdateEmailInput({
  1. required String email,
  2. bool? emailAuthFactor,
  3. String? token,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ServerUpdateEmailInput({
  required String email,
  bool? emailAuthFactor,

  /// Requires a token from com.atproto.sever.requestEmailUpdate if the account's email has been confirmed.
  String? token,

  Map<String, dynamic>? $unknown,
}) = _ServerUpdateEmailInput;