Item constructor

Item({
  1. String? crxVersion,
  2. String? id,
  3. List<ItemError>? itemError,
  4. String? kind,
  5. String? publicKey,
  6. String? uploadState,
})

Implementation

Item({
  this.crxVersion,
  this.id,
  this.itemError,
  this.kind,
  this.publicKey,
  this.uploadState,
});