TypedValueDtoObject constructor

TypedValueDtoObject({
  1. TypedValueDtoObjectTypeEnum? type,
  2. bool? booleanValue,
  3. int? integerValue,
  4. double? doubleValue,
  5. String? stringValue,
  6. DateTime? dateValue,
  7. String? encryptedSelf,
})

Returns a new TypedValueDtoObject instance.

Implementation

TypedValueDtoObject({
  this.type,
  this.booleanValue,
  this.integerValue,
  this.doubleValue,
  this.stringValue,
  this.dateValue,
  this.encryptedSelf,
});