SustainabilityCertifications.fromJson constructor

SustainabilityCertifications.fromJson(
  1. Map json_
)

Implementation

SustainabilityCertifications.fromJson(core.Map json_)
  : this(
      breeamCertification: json_['breeamCertification'] as core.String?,
      breeamCertificationException:
          json_['breeamCertificationException'] as core.String?,
      ecoCertifications: (json_['ecoCertifications'] as core.List?)
          ?.map(
            (value) => EcoCertification.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      leedCertification: json_['leedCertification'] as core.String?,
      leedCertificationException:
          json_['leedCertificationException'] as core.String?,
    );