Dart Core Libraries

Overview
dart:core
The dart:core library is automatically imported into every Dart program. It provides fundamental types, collections, utilities, and annotations that are essential for Dart programming. Some key features include:
Core types like
int,double,String,bool, etc.Collection classes such as
List,Set,Map, andIterable.Useful utilities like
DateTimefor working with dates and times.Annotations like
overrideanddeprecatedfor annotating code.
2. dart:async
The dart:async library is used for asynchronous programming in Dart. It provides classes and utilities for working with asynchronous operations, including:
Futures and Completers for representing asynchronous computations.
Streams and StreamControllers for working with streams of data.
Timers and asynchronous error handling mechanisms.
3. dart:collection
The dart:collection library provides specialized collection classes that are not available in the core dart:core library. These include:
Queuefor a collection that supports adding and removing elements efficiently.LinkedListfor a doubly-linked list implementation.HashMapandLinkedHashMapfor implementing hash tables.
4. dart:math
The dart:math library offers mathematical constants and functions for common mathematical operations. Key features include:
Mathematical constants like
piande.Functions for trigonometry, logarithms, exponentiation, random number generation, etc.
5. dart:convert
The dart:convert library provides encoders and decoders for converting between different data representations. This includes:
JSON encoding and decoding using
jsonEncodeandjsonDecode.UTF-8 encoding and decoding using
utf8.encodeandutf8.decode.Base64 encoding and decoding using
base64.encodeandbase64.decode.
6. dart:io
The dart:io library allows Dart programs to interact with the file system, sockets, processes, and other I/O operations. Note that this library is typically used in server-side or command-line applications, not in web applications.



