DartPad is an open-source tool that lets you work with the Dart language in any modern web browser. It is a great, no download-required way to learn Dart syntaxes and to experiment Dart language features.
The following steps show how you can write a Dart code using DartPad:
1- Go to: https://dartpad.dev
2- Delete the exiting code which are in the left side, then write the following code:
main() {
print('Welcome to Android ATC');
}
3- Click the Run button, then you will get the running program output in the
CONSOLE side as illustrated in the following figure:
* This topic is a part of lesson 1 of Flutter Application Development course. For more information about this course, click here.