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