AttributePropagationSettings.fromJson constructor
AttributePropagationSettings.fromJson(
- Map json_
Implementation
AttributePropagationSettings.fromJson(core.Map json_)
: this(
enable:
json_.containsKey('enable') ? json_['enable'] as core.bool : null,
expression: json_.containsKey('expression')
? json_['expression'] as core.String
: null,
outputCredentials: json_.containsKey('outputCredentials')
? (json_['outputCredentials'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);