Input$VoteGroupInput constructor
Input$VoteGroupInput({})
Implementation
factory Input$VoteGroupInput({
String? id,
required String name,
String? description,
required List<String> matchLabel,
required int order,
required List<Input$VoteItemInput> items,
}) =>
Input$VoteGroupInput._({
if (id != null) r'id': id,
r'name': name,
if (description != null) r'description': description,
r'matchLabel': matchLabel,
r'order': order,
r'items': items,
});