ExternalDatasetReference.fromJson constructor
ExternalDatasetReference.fromJson(
- Map json_
Implementation
ExternalDatasetReference.fromJson(core.Map json_)
: this(
connection: json_.containsKey('connection')
? json_['connection'] as core.String
: null,
externalSource: json_.containsKey('externalSource')
? json_['externalSource'] as core.String
: null,
);