ActionInput.fromJson constructor
ActionInput.fromJson(
- Map json_
Implementation
ActionInput.fromJson(core.Map json_)
: this(
actionFlowId: json_.containsKey('actionFlowId')
? json_['actionFlowId'] as core.String
: null,
inputValues: json_.containsKey('inputValues')
? (json_['inputValues'] as core.List)
.map((value) => InputValue.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);