ConstantInfo constructor

const ConstantInfo({
  1. required String name,
  2. required PortableType type,
  3. required int typeId,
  4. required Uint8List value,
  5. required List<String> docs,
  6. required String palletName,
})

Implementation

const ConstantInfo({
  required this.name,
  required this.type,
  required this.typeId,
  required this.value,
  required this.docs,
  required this.palletName,
});