$LineItemBudget.fromJson constructor
$LineItemBudget.fromJson(
- Map json_
Implementation
$LineItemBudget.fromJson(core.Map json_)
: this(
budgetAllocationType: json_.containsKey('budgetAllocationType')
? json_['budgetAllocationType'] as core.String
: null,
budgetUnit: json_.containsKey('budgetUnit')
? json_['budgetUnit'] as core.String
: null,
maxAmount: json_.containsKey('maxAmount')
? json_['maxAmount'] as core.String
: null,
);