addStructMapsFromJson method
Calls addStructMap for each entry in the structInfo
map.
Implementation
void addStructMapsFromJson(Map<String, dynamic> structInfo) {
final structInfoAdjusted = _getStructMap(structInfo);
for (final entry in structInfoAdjusted.entries) {
addStructMap(entry.key, port(entry.value));
}
}