ToxicCombination.fromJson constructor

ToxicCombination.fromJson(
  1. Map json_
)

Implementation

ToxicCombination.fromJson(core.Map json_)
    : this(
        attackExposureScore:
            (json_['attackExposureScore'] as core.num?)?.toDouble(),
        relatedFindings: (json_['relatedFindings'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );