toTypedValueDtoObject method

TypedValueDtoObject toTypedValueDtoObject()

Implementation

TypedValueDtoObject toTypedValueDtoObject() => TypedValueDtoObject(
      type: this.type?.toTypedValueDtoObjectType(),
      booleanValue: this.booleanValue,
      integerValue: this.integerValue,
      doubleValue: this.doubleValue,
      stringValue: this.stringValue,
      dateValue: this.dateValue,
    );