Input$PerformNonPredefinedQuestByUserInput constructor

Input$PerformNonPredefinedQuestByUserInput({
  1. required String quest,
  2. List<Input$QuestActionActivityApiInput>? api,
  3. List<Input$ResponseInput>? responses,
  4. List<Input$QuestActionActivityWatchedInput>? watched,
  5. 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,
    });