TableReference.fromJson constructor
TableReference.fromJson(
- Map json_
Implementation
TableReference.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,
tableId: json_.containsKey('tableId')
? json_['tableId'] as core.String
: null,
);