ReadFeatureValuesResponse.fromJson constructor
ReadFeatureValuesResponse.fromJson(
- Object? j
Implementation
factory ReadFeatureValuesResponse.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return ReadFeatureValuesResponse(
header: switch (json['header']) {
null => null,
Object $1 => ReadFeatureValuesResponse_Header.fromJson($1),
},
entityView: switch (json['entityView']) {
null => null,
Object $1 => ReadFeatureValuesResponse_EntityView.fromJson($1),
},
);
}