SingleValidationResponse constructor
const
SingleValidationResponse({
- required String email,
- required bool isValid,
- required int score,
- required bool deliverable,
- required bool syntaxValid,
- required bool domainValid,
- required bool mxRecords,
- required bool smtpValid,
- bool? catchAll,
- required bool disposable,
- required bool generic,
- String? provider,
- required String risk,
- String? confidence,
- String? suggestion,
- int? creditsRemaining,
- bool? cached,
- String? timestamp,
Creates a new SingleValidationResponse.
Implementation
const SingleValidationResponse({
required this.email,
required this.isValid,
required this.score,
required this.deliverable,
required this.syntaxValid,
required this.domainValid,
required this.mxRecords,
required this.smtpValid,
this.catchAll,
required this.disposable,
required this.generic,
this.provider,
required this.risk,
this.confidence,
this.suggestion,
this.creditsRemaining,
this.cached,
this.timestamp,
});