Dart
This note is focused on the dart language basics
- in dart every app required the top level
main()function.
void main() {
print("hey samith")
}
This note is focused on the dart language basics
main() function.void main() {
print("hey samith")
}