Input$PerformNonPredefinedQuestByUserInput constructor
Input$PerformNonPredefinedQuestByUserInput({
- required String quest,
- List<
Input$QuestActionActivityApiInput> ? api, - List<
Input$ResponseInput> ? responses, - List<
Input$QuestActionActivityWatchedInput> ? watched, - List<
Input$QuestActionGameInput> ? game,
Implementation
factory Input$PerformNonPredefinedQuestByUserInput({
required String quest,
List<Input$QuestActionActivityApiInput>? api,
List<Input$ResponseInput>? responses,
List<Input$QuestActionActivityWatchedInput>? watched,
List<Input$QuestActionGameInput>? game,
}) =>
Input$PerformNonPredefinedQuestByUserInput._({
r'quest': quest,
if (api != null) r'api': api,
if (responses != null) r'responses': responses,
if (watched != null) r'watched': watched,
if (game != null) r'game': game,
});