InsertionOrderBudget.fromJson constructor
InsertionOrderBudget.fromJson(
- Map json_
Implementation
InsertionOrderBudget.fromJson(core.Map json_)
: this(
automationType: json_['automationType'] as core.String?,
budgetSegments: (json_['budgetSegments'] as core.List?)
?.map((value) => InsertionOrderBudgetSegment.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
budgetUnit: json_['budgetUnit'] as core.String?,
);