September 2019
Beginner
512 pages
12h 52m
English
The preceding approach is not the ideal way of splitting a Dart library, as already mentioned. This is because the syntax of the part statement is likely to change in future versions. Additionally, you may have found it a little overdone and difficult to use if you just want to control the visibility of library members.
We can choose to simply not create the library parts and just split the library into small individual libraries. For the previous examples, this would result in some important changes during implementation.
We have the previous parts as three individual libraries: person_library, programmer, and student. Although related, they behave as individual libraries and do not know anything ...
Read now
Unlock full access