PackageDetails constructor

PackageDetails({
  1. String? availablePackageVersion,
  2. DateTime? createdAt,
  3. ErrorDetails? errorDetails,
  4. DateTime? lastUpdatedAt,
  5. String? packageDescription,
  6. String? packageID,
  7. String? packageName,
  8. PackageStatus? packageStatus,
  9. PackageType? packageType,
})

Implementation

PackageDetails({
  this.availablePackageVersion,
  this.createdAt,
  this.errorDetails,
  this.lastUpdatedAt,
  this.packageDescription,
  this.packageID,
  this.packageName,
  this.packageStatus,
  this.packageType,
});