InputValueChoiceInputValue.fromJson constructor

InputValueChoiceInputValue.fromJson(
  1. Map json_
)

Implementation

InputValueChoiceInputValue.fromJson(core.Map json_)
    : this(
        choiceInputOptionId: json_.containsKey('choiceInputOptionId')
            ? json_['choiceInputOptionId'] as core.String
            : null,
      );