How to Print Multiple Objects to the Console with print() in Dart If you are coming from JavaScript you may be used to printing multiple objects to the console with : In Dart we can only print to the console with : But it is totally possible to print multiple objects too, we need to use Records: Print the following: Demo ---