ConstLiteral<T> constructor

const ConstLiteral<T>(
  1. T value
)

Creates a new literal constant with the given value.

@param value The Dart value this constant represents

Implementation

const ConstLiteral(this.value);