19
0

Introduce

2026-05-27
2026-05-27

Dart is a computer programming language developed by Google, which can be used for development in areas such as web, server, mobile applications, and the Internet of Things.

Dart was born in 2011, But it was initially lackluster until the emergence of Flutter, when it began to be taken seriously by people.

To learn Flutter, one must first learn Dart.

Official Website: https://dart.dev

Dart Environment Setup:

To develop Dart programs locally, you first need to install the Dart SDK

Official Documentation: https://dart.dev/get-dart

Install SDK

We can install Dart sdk through Chocolatey (requires Administrative permissions)

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))

Comments