Refund constructor

Refund(
  1. dynamic id,
  2. dynamic createdAt,
  3. dynamic updatedAt,
  4. dynamic objectType,
  5. dynamic mode,
  6. String? carrier,
  7. String? confirmationNumber,
  8. String? shipmentId,
  9. String? status,
  10. String? trackingCode
)

Implementation

Refund(
  id,
  createdAt,
  updatedAt,
  objectType,
  mode,
  this.carrier,
  this.confirmationNumber,
  this.shipmentId,
  this.status,
  this.trackingCode,
) : super(id, createdAt, updatedAt, objectType, mode);