Verification constructor

Verification({
  1. required bool isConfirmed,
  2. VerificationFlow flow = VerificationFlow.none,
  3. VerificationType type = VerificationType.none,
  4. String? destination,
  5. String? attrName,
})

Implementation

Verification({
  required this.isConfirmed,
  this.flow = VerificationFlow.none,
  this.type = VerificationType.none,
  this.destination,
  this.attrName,
});