fromJson static method
Returns a new ODataListResponseOfComplexValueBase instance and imports its values from
value if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static ODataListResponseOfComplexValueBase fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
return ODataListResponseOfComplexValueBase(
atOdataPeriodNextLink: mapValueOfType<String>(json, r'@odata.nextLink'),
atOdataPeriodCount: mapValueOfType<int>(json, r'@odata.count'),
atOdataPeriodContext: mapValueOfType<String>(json, r'@odata.context'),
value: ComplexValueBase.listFromJson(json[r'value']),
);
}
return null;
}