HTConstantValue constructor

HTConstantValue({
  1. required String id,
  2. required Type type,
  3. required int index,
  4. String? classId,
  5. bool isTopLevel = false,
  6. required HTGlobalConstantTable module,
})

Implementation

HTConstantValue({
  required String id,
  required this.type,
  required this.index,
  super.classId,
  super.isTopLevel = false,
  required this.module,
}) : super(id: id);