dart concatenate code example
Example 1: dart concatenate string
String a = 'a';
String b = 'b';
var c1 = a + b;
var c2 = '$a$b';
var c3 = 'a' 'b';
var c4 = 'abcdefgh abcdefgh abcdefgh abcdefgh'
'abcdefgh abcdefgh abcdefgh abcdefgh';
Example 2: concatenate in flutter
In dart there are many string options.
For concatenation, you can do :
'hello $myVariable'
"hello ${myVariable.myProperty}"
'hello ' 'world' (only works with string literals)
'hello' + myVariable
So in your case, you can do a print(" $str1 $str2")