Xss.fromJson constructor

Xss.fromJson(
  1. Map json_
)

Implementation

Xss.fromJson(core.Map json_)
  : this(
      attackVector: json_['attackVector'] as core.String?,
      errorMessage: json_['errorMessage'] as core.String?,
      stackTraces:
          (json_['stackTraces'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      storedXssSeedingUrl: json_['storedXssSeedingUrl'] as core.String?,
    );