Dart Glossary

Browse 6 dart terms defined in plain English, from the cultural dictionary of computing.

6 Dart Terms

Flutter
Google's open-source UI toolkit for building natively compiled applications for mobile, web, and desktop from a single Dart codebase. Uses its own rendering...
Flutter
Google's UI toolkit for building natively compiled applications for mobile, web, and desktop from a single Dart codebase. Unlike React Native, Flutter doesn't...
Isolate
In Dart and Flutter, an independent worker with its own memory heap that runs concurrently without sharing state with other isolates, communicating only...
Pub Package
A package published in the Dart and Flutter ecosystem through the pub package manager and associated registry. In mobile and Dart culture, pub packages are the...
Pubspec
The pubspec.yaml file in Dart and Flutter projects that declares metadata, dependencies, and configuration. Equivalent to package.json in Node.js or Cargo.toml...
Type Promotion
The automatic widening of a numeric value to a larger or more precise type during an operation (e.g., `int` to `long` or `float` to `double` in C/Java) to...

Related Topics