Report.fromJson constructor

Report.fromJson(
  1. Map json_
)

Implementation

Report.fromJson(core.Map json_)
  : this(
      createTime: json_['createTime'] as core.String?,
      iacValidationReport:
          json_.containsKey('iacValidationReport')
              ? IaCValidationReport.fromJson(
                json_['iacValidationReport']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      name: json_['name'] as core.String?,
      updateTime: json_['updateTime'] as core.String?,
    );