Verification constructor

Verification(
  1. dynamic objectType,
  2. dynamic mode,
  3. VerificationDetails? details,
  4. List<Error>? errors,
  5. bool? wasSuccessful
)

Implementation

Verification(
  objectType,
  mode,
  this.details,
  this.errors,
  this.wasSuccessful,
) : super(objectType, mode);