Constant<T extends Object> constructor

const Constant<T extends Object>(
  1. T? value, [
  2. UserDefinedSqlType<T>? _customType
])

Constructs a new constant (sql literal) holding the value.

Implementation

const Constant(this.value, [this._customType]);