Effective Dart: Usage
Libraries
The preferred syntax is to use a URI string that points directly to the library file. If you have some library, my_library.dart, that contains:
library my_library;
part 'some/other/file.dart';
Then the part file should use the library file...
jinali.hashnode.dev6 min read