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,
      );