EventInfo constructor

const EventInfo({
  1. required String name,
  2. required String palletName,
  3. required int index,
  4. required List<FieldInfo> fields,
  5. List<String> docs = const [],
})

Implementation

const EventInfo({
  required this.name,
  required this.palletName,
  required this.index,
  required this.fields,
  this.docs = const [],
});