VulnerableParameters.fromJson constructor

VulnerableParameters.fromJson(
  1. Map json_
)

Implementation

VulnerableParameters.fromJson(core.Map json_)
  : this(
      parameterNames: (json_['parameterNames'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );