SyntheticMonitorTarget.fromJson constructor
SyntheticMonitorTarget.fromJson(
- Map json_
Implementation
SyntheticMonitorTarget.fromJson(core.Map json_)
: this(
cloudFunctionV2: json_.containsKey('cloudFunctionV2')
? CloudFunctionV2Target.fromJson(
json_['cloudFunctionV2'] as core.Map<core.String, core.dynamic>,
)
: null,
);