from Expression
Explicitly construct a mapping to TO from expression source function.
For example
Person::name fromExpression { personDto -> personDto.fullName + " (full)" }Content copied to clipboard
will generate an explicit mapping, setting constructor parameter Person.name to "John Doe (full)", assuming personDto.fullName == "John Doe".