EnvironmentPropertyDescriptions.fromJson constructor
Implementation
factory EnvironmentPropertyDescriptions.fromJson(Map<String, dynamic> json) {
return EnvironmentPropertyDescriptions(
propertyGroupDescriptions: (json['PropertyGroupDescriptions'] as List?)
?.whereNotNull()
.map((e) => PropertyGroup.fromJson(e as Map<String, dynamic>))
.toList(),
);
}