Input$VoteGroupInput constructor

Input$VoteGroupInput({
  1. String? id,
  2. required String name,
  3. String? description,
  4. required List<String> matchLabel,
  5. required int order,
  6. required List<Input$VoteItemInput> items,
})

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,
    });