ExternalDatasetReference.fromJson constructor

ExternalDatasetReference.fromJson(
  1. 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,
      );