EnvironmentPropertyDescriptions.fromJson constructor

EnvironmentPropertyDescriptions.fromJson(
  1. Map<String, dynamic> json
)

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(),
  );
}