Last Updated: February 25, 2016
·
1.342K
· inuyasha82

String concatenation in Dart language

Here a little example on how to concatenate 2 strings in dart language:

String first = "CoderWall";
String second = "Welcome to $first";