analyze function
Analyzes the Dart source files for the current dart project
since 0.0.1
Implementation
Future<void> analyze(IShell shell) async {
await _whenDartProject('Analyze', shell, () async {
_log.info('Analyzing...');
await shell.run('dart analyze');
});
}