copyWithWrapped method

FwStandardSqlServerFwDateTime copyWithWrapped({
  1. Wrapped<String?>? val,
})

Implementation

FwStandardSqlServerFwDateTime copyWithWrapped({Wrapped<String?>? val}) {
  return FwStandardSqlServerFwDateTime(
    val: (val != null ? val.value : this.val),
  );
}