Value constructor

Value({
  1. double? fpVal,
  2. int? intVal,
  3. List<ValueMapValEntry>? mapVal,
  4. String? stringVal,
})

Implementation

Value({
  this.fpVal,
  this.intVal,
  this.mapVal,
  this.stringVal,
});