ValidationResponse constructor

ValidationResponse({
  1. String? schemaVersion,
  2. required String email,
  3. required ValidationResponseStatusEnum status,
  4. String? subStatus,
  5. required ValidationResponseActionEnum action,
  6. String? domain,
  7. bool? mxFound,
  8. bool? smtpCheck,
  9. bool? disposable,
  10. bool? roleAccount,
  11. bool? freeProvider,
  12. ValidationResponseSuppressionMatch? suppressionMatch,
})

Returns a new ValidationResponse instance.

Implementation

ValidationResponse({
  this.schemaVersion,
  required this.email,
  required this.status,
  this.subStatus,
  required this.action,
  this.domain,
  this.mxFound,
  this.smtpCheck,
  this.disposable,
  this.roleAccount,
  this.freeProvider,
  this.suppressionMatch,
});