RegistryItemBilling constructor
- RegistryItemCostByResource? costPerMonth,
- RegistryItemCostByResource? costPerYear,
Implementation
factory RegistryItemBilling({
RegistryItemCostByResource? costPerMonth,
RegistryItemCostByResource? costPerYear,
}) {
final $result = create();
if (costPerMonth != null) {
$result.costPerMonth = costPerMonth;
}
if (costPerYear != null) {
$result.costPerYear = costPerYear;
}
return $result;
}