DistributionBundle.fromJson constructor
Implementation
factory DistributionBundle.fromJson(Map<String, dynamic> json) {
return DistributionBundle(
bundleId: json['bundleId'] as String?,
isActive: json['isActive'] as bool?,
name: json['name'] as String?,
price: json['price'] as double?,
transferPerMonthInGb: json['transferPerMonthInGb'] as int?,
);
}