ValueContainer constructor

ValueContainer({
  1. List<ValueContainerDataTypeFlagsEnum> dataTypeFlags = const [],
  2. ValueContainerDataTypeEnum dataType,
  3. String text,
  4. bool logical,
  5. DateTime date,
  6. int integer,
  7. double real,
})

Returns a new ValueContainer instance.

Implementation

ValueContainer({
  this.dataTypeFlags = const [],
  this.dataType,
  this.text,
  this.logical,
  this.date,
  this.integer,
  this.real,
});