RoutineReference.fromJson constructor

RoutineReference.fromJson(
  1. Map json_
)

Implementation

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