Value constructor

Value({
  1. int? intValue,
  2. double? doubleValue,
  3. String? stringValue,
})

Implementation

Value({this.intValue, this.doubleValue, this.stringValue})
  : super(fullyQualifiedName);