AuthyoResponseModel constructor

AuthyoResponseModel({
  1. bool? success,
  2. String? message,
  3. Data? data,
  4. String? status,
  5. String? error,
  6. String? errorCode,
  7. int? attemptsRemaining,
  8. int? maxVerifyAttempts,
  9. int? retryAfterSeconds,
})

Implementation

AuthyoResponseModel({
  this.success,
  this.message,
  this.data,
  this.status,
  this.error,
  this.errorCode,
  this.attemptsRemaining,
  this.maxVerifyAttempts,
  this.retryAfterSeconds,
});