I3Config.fromJson constructor
Implementation
factory I3Config.fromJson(Map<String, dynamic> json) {
final config = I3Config();
config.elements = (json['elements'] as List)
.map((e) => ConfigElement.fromJson(e))
.toList();
return config;
}