AllocationResourceStatus.fromJson constructor
AllocationResourceStatus.fromJson(
- Map json_
Implementation
AllocationResourceStatus.fromJson(core.Map json_)
: this(
specificSkuAllocation: json_.containsKey('specificSkuAllocation')
? AllocationResourceStatusSpecificSKUAllocation.fromJson(
json_['specificSkuAllocation']
as core.Map<core.String, core.dynamic>)
: null,
);