Batch constructor

Batch(
  1. dynamic id,
  2. dynamic createdAt,
  3. dynamic updatedAt,
  4. dynamic objectType,
  5. dynamic mode,
  6. String? error,
  7. String? labelUrl,
  8. String? message,
  9. int? numShipments,
  10. String? reference,
  11. ScanForm? scanForm,
  12. List<BatchShipment>? shipments,
  13. BatchState? state,
  14. Map<String, int>? status
)

Implementation

Batch(
    id,
    createdAt,
    updatedAt,
    objectType,
    mode,
    this.error,
    this.labelUrl,
    this.message,
    this.numShipments,
    this.reference,
    this.scanForm,
    this.shipments,
    this.state,
    this.status)
    : super(id, createdAt, updatedAt, objectType, mode);