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