ExternalValueSource.fromJson constructor
ExternalValueSource.fromJson(
- Map json_
Implementation
ExternalValueSource.fromJson(core.Map json_)
: this(
deploymentSource: json_.containsKey('deploymentSource')
? DeploymentSource.fromJson(
json_['deploymentSource']
as core.Map<core.String, core.dynamic>,
)
: null,
);