Call this to have the cp.prop get reset to its original value after the Thenresolvables have resolved.
Parameters
... - The list of resolveable values to process for the successful If result.
Returns
The ThenStatement.Modifier.
Notes
For example:
lua</li><li>local foo = prop.THIS("foo")</li><li>SetProp(foo):To("bar") -- `foo` is updated to "bar"</li><li>:Then(function(aResult)</li><li> doSomethingWith(aResult, anotherResult)</li><li> return true</li><li>end)</li><li>:ThenReset() -- `foo` is back to "foo" now</li><li>