Parcel constructor

Parcel(
  1. dynamic id,
  2. dynamic createdAt,
  3. dynamic updatedAt,
  4. dynamic objectType,
  5. dynamic mode,
  6. double? height,
  7. double? length,
  8. String? predefinedPackage,
  9. double? weight,
  10. double? width
)

Implementation

Parcel(
  id,
  createdAt,
  updatedAt,
  objectType,
  mode,
  this.height,
  this.length,
  this.predefinedPackage,
  this.weight,
  this.width,
) : super(id, createdAt, updatedAt, objectType, mode);