September 2019
Beginner
512 pages
12h 52m
English
A Dart package is the starting point of any Dart project. In previous examples, we did not bother about it as we were using single-file syntax examples; however, in the real world, we will always be working with packages:

The main benefit of using and creating packages is that the code can be reused and shared. In the Dart ecosystem, this is done by the pub tool, which allows us to pull and send dependencies to the pub.dartlang.org website and repository.
The use of a library package in a project makes it an immediate dependency, and the used library may have its own dependencies, called transitive dependencies.
Read now
Unlock full access