Item constructor

Item({
  1. String? itemId,
  2. String? institutionId,
  3. String? webhook,
  4. Error? error,
  5. List<Products>? availableProducts,
  6. List<Products>? billedProducts,
  7. String? consentExpirationTime,
  8. ItemUpdateType? updateType,
})

Implementation

Item({
  this.itemId,
  this.institutionId,
  this.webhook,
  this.error,
  this.availableProducts,
  this.billedProducts,
  this.consentExpirationTime,
  this.updateType,
});