* Creates an instance of `IterableAction` from a dictionary object. * * @param dict - The dictionary object containing the properties to initialize the `IterableAction` instance. * @returns A new instance of `IterableAction` initialized with the provided dictionary properties.
(dict: IterableAction)
| 35 | * @returns A new instance of `IterableAction` initialized with the provided dictionary properties. |
| 36 | */ |
| 37 | static fromDict(dict: IterableAction): IterableAction { |
| 38 | return new IterableAction(dict.type, dict.data, dict.userInput); |
| 39 | } |
| 40 | } |
no outgoing calls
no test coverage detected