DistributionBundle constructor

DistributionBundle({
  1. String? bundleId,
  2. bool? isActive,
  3. String? name,
  4. double? price,
  5. int? transferPerMonthInGb,
})

Implementation

DistributionBundle({
  this.bundleId,
  this.isActive,
  this.name,
  this.price,
  this.transferPerMonthInGb,
});