VerificationResponse constructor

VerificationResponse({
  1. required String status,
  2. Map<String, dynamic>? errors,
  3. String? message,
  4. String? sessionId,
})

Implementation

VerificationResponse({
  required this.status,
  this.errors,
  this.message,
  this.sessionId,
});