Concept Flow - Parameters with default values
Function call
Check if argument provided?
No→Use default value
Yes
Assign argument to parameter
Execute function body
Return result or finish
When a function is called, Kotlin checks if each parameter has an argument. If not, it uses the default value. Then it runs the function with those values.