Dart Concat String и Int

void main() {
  int num = 5;
  print("The number is $num");
}
Jealous Jaguar