VerificationResponse constructor

const VerificationResponse({
  1. required String type,
  2. required String id,
  3. bool hasEmergencyContact = false,
  4. String? contactId,
  5. String? deactivatedAt,
})

Implementation

const VerificationResponse({
  required this.type,
  required this.id,
  this.hasEmergencyContact = false,
  this.contactId,
  this.deactivatedAt,
});