JobReference.fromJson constructor
JobReference.fromJson(
- Map json_
Implementation
JobReference.fromJson(core.Map json_)
: this(
jobId:
json_.containsKey('jobId') ? json_['jobId'] as core.String : null,
projectId: json_.containsKey('projectId')
? json_['projectId'] as core.String
: null,
);