toTypedValueObject method

TypedValueObject toTypedValueObject()

Implementation

TypedValueObject toTypedValueObject() => TypedValueObject(
      type: this.type?.toTypedValueObjectType(),
      booleanValue: this.booleanValue,
      integerValue: this.integerValue,
      doubleValue: this.doubleValue,
      stringValue: this.stringValue,
      dateValue: this.dateValue,
    );