BundleDetails constructor

BundleDetails({
  1. List<Platform>? availablePlatforms,
  2. String? bundleId,
  3. String? description,
  4. String? iconUrl,
  5. String? title,
  6. String? version,
})

Implementation

BundleDetails({
  this.availablePlatforms,
  this.bundleId,
  this.description,
  this.iconUrl,
  this.title,
  this.version,
});