dartCompile method

Future<IShell> dartCompile(
  1. String dartFile, [
  2. String executableType = 'kernel'
])

Compiles the specified dartFile into the target executableType

since 0.0.1

Implementation

Future<IShell> dartCompile(
  String dartFile, [
  String executableType = 'kernel',
]) async {
  return then(
    (shell) async => //
        await shell.dartCompile(dartFile, executableType),
  );
}