Results constructor

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

Implementation

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