Using dynamic values stored inside variables, inside a string. We can utilize the string interpolation feature in flutter to insert values inside a string. Example inside a Text widget we can use variables using this.
Dynamic values can be used by enclosing it in ${ }
eg: '${controller.value.toInt() }'
Above you can see example of string interpolation in flutter. Dynamic values inside Text widget of flutter sample reference code.