Results constructor

Results({
  1. bool? success,
  2. String? message,
  3. String? to,
  4. String? authtype,
  5. String? maskId,
  6. int? createdTime,
  7. int? expiretime,
  8. int? attemptsRemaining,
  9. int? maxVerifyAttempts,
})

Implementation

Results({
  this.success,
  this.message,
  this.to,
  this.authtype,
  this.maskId,
  this.createdTime,
  this.expiretime,
  this.attemptsRemaining,
  this.maxVerifyAttempts,
});