What is DART library

In this article, i will discuss about library in DART language
  • 2042

DART Libraries

DART libraries is used to support web and web server development. DART libraries not only provide APIs , but it is a unit of privacy: they can implement details such as private variables. There are some of libraries of DART:

  • Core Library

    Core library contains interface to support common data structure and operations.
     
  • Html Library

    DART html library contains interfaces to the HTML5 DOM.
     
  • I/O Library

    DART I/O library contains interfaces to read and write files.
     
  • Isolate Library

    DART isolate library contains interfaces for spawning and communicating with isolates, the mechanism for concurrency and security in DART program.
     
  • Crypto Library

    DART crypto library contains interfaces for creating one-way hashes(SHA1,MD5,SHA256) and HMAC support.
     
  • Json Library

    DART json library contains ability to parse and produce JSON-encoded text.
     
  • Unit Test Library

    DART unit test library contains function and classes.

Example of  some DART Library

#import('dart:html');
#import('dart:io');
#import('dart:json');
#import('dart:isolate');
#import('dart:uri');
#import('dart:utf');
#import('dart:crypto');

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 
© 2020 DotNetHeaven. All rights reserved.