CustomsItem constructor

CustomsItem(
  1. dynamic id,
  2. dynamic createdAt,
  3. dynamic updatedAt,
  4. dynamic objectType,
  5. dynamic mode,
  6. String? code,
  7. String? currency,
  8. String? description,
  9. String? hsTariffNumber,
  10. String? originCountry,
  11. int? quantity,
  12. String? value,
  13. double? weight
)

Implementation

CustomsItem(
  id,
  createdAt,
  updatedAt,
  objectType,
  mode,
  this.code,
  this.currency,
  this.description,
  this.hsTariffNumber,
  this.originCountry,
  this.quantity,
  this.value,
  this.weight,
) : super(id, createdAt, updatedAt, objectType, mode);