dartDoc method

Future<IShell> dartDoc({
  1. String output = 'docs',
  2. String format = 'html',
})

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,
    ),
  );
}