ValueWithType constructor

const ValueWithType(
  1. StorageType type,
  2. dynamic value
)

Create new value with type

Implementation

const ValueWithType(
  this.type,
  this.value,
);