InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by Dart? Write its importance. |
|
Answer» Dart, a programming language developed by Google, is used to code Flutter apps as well as server and desktop applications. By using Dart, Flutter avoids the use of a separate declarative layout language such as JSX or XML. A simple Dart program is shown in the following example: void main() { for (int i = 0; i < 5; i++) { PRINT('hello ${i + 1}'); } }An overview of Dart's importance:
|
|