VerificationResult constructor

const VerificationResult({
  1. required bool valid,
  2. String? error,
  3. String? expected,
  4. String? received,
  5. required int timestampAge,
})

Implementation

const VerificationResult({
  required this.valid,
  this.error,
  this.expected,
  this.received,
  required this.timestampAge,
});