dartDoc method
Runs the Dart Documentation Generator
since 0.0.1
Implementation
Future<IShell> dartDoc({
String output = 'docs',
String format = 'html',
}) async {
return then(
(shell) async => await shell.dartDoc(
output: output,
format: format,
),
);
}