LiteralElement constructor

LiteralElement({
  1. Type? type,
  2. required bool constant,
  3. required Object? constantValue,
})

Implementation

LiteralElement({
  this.type,
  required this.constant,
  required this.constantValue,
});