Open DICOMweb
-
Follow the guide-lines in Effective Dart.
-
All source files should include the copyright notice in the file copyright_notice.txt file in the SDK repository. This file refers to the LICENSE file in the same directory.
-
In general, source files should not include the
librarydirective. -
All variables, functions, methods, Getters, Setters should have types.
All source files should have the following structure:
- copyright notice
- public variables (
const, final...) - class(es) or functions
- private variables or functions
- static const or final variables
- local variables
- Constructors
- operators
- getters & setters
- methods
- private methods
- static methods