ServerUpdateEmailInput constructor
- @JsonSerializable(includeIfNull: false)
const
ServerUpdateEmailInput(
{ - required String email,
- bool? emailAuthFactor,
- String? token,
- 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;