ResultsStorage.fromJson constructor

ResultsStorage.fromJson(
  1. Map _json
)

Implementation

ResultsStorage.fromJson(core.Map _json)
    : this(
        resultsStoragePath: _json.containsKey('resultsStoragePath')
            ? FileReference.fromJson(_json['resultsStoragePath']
                as core.Map<core.String, core.dynamic>)
            : null,
        xunitXmlFile: _json.containsKey('xunitXmlFile')
            ? FileReference.fromJson(
                _json['xunitXmlFile'] as core.Map<core.String, core.dynamic>)
            : null,
      );