Payload constructor

Payload({
  1. bool? show,
  2. String? landingType,
  3. num? availableCreditLimit,
  4. num? creditLimit,
  5. num? totalOutstanding,
  6. num? lockedAmt,
  7. String? panNumber,
  8. String? channel,
  9. Token? token,
  10. String? requestId,
  11. String? userId,
  12. String? accId,
  13. String? puId,
})

Implementation

Payload({
  this.show,
  this.landingType,
  this.availableCreditLimit,
  this.creditLimit,
  this.totalOutstanding,
  this.lockedAmt,
  this.panNumber,
  this.channel,
  this.token,
  this.requestId,
  this.userId,
  this.accId,
  this.puId,
});