Input$VoteItemInput constructor
Input$VoteItemInput({})
Implementation
factory Input$VoteItemInput({
required String name,
String? content,
required List<String> matchLabel,
required Enum$VoteItemTypeEnum type,
required int order,
int? score,
int? weightMatchLabel,
required bool isRandomizeAnswerOrder,
required bool isPublished,
required List<Input$VoteOptionInput?> options,
}) =>
Input$VoteItemInput._({
r'name': name,
if (content != null) r'content': content,
r'matchLabel': matchLabel,
r'type': type,
r'order': order,
if (score != null) r'score': score,
if (weightMatchLabel != null) r'weightMatchLabel': weightMatchLabel,
r'isRandomizeAnswerOrder': isRandomizeAnswerOrder,
r'isPublished': isPublished,
r'options': options,
});