Pattern: Missing use of string in part of directive
Issue: -
From effective dart:
DO use strings in part of
directives.
Example of incorrect code:
part of my_library;
Example of correct code:
part of '../../my_library.dart';
Pattern: Missing use of string in part of directive
Issue: -
From effective dart:
DO use strings in part of
directives.
Example of incorrect code:
part of my_library;
Example of correct code:
part of '../../my_library.dart';