PredefinedDetectorInfo.fromJson constructor

PredefinedDetectorInfo.fromJson(
  1. Map _json
)

Implementation

PredefinedDetectorInfo.fromJson(core.Map _json)
    : this(
        detectorName: _json.containsKey('detectorName')
            ? _json['detectorName'] as core.String
            : null,
      );