1

I tried compiling a simple HttpServer.bind with DDC and it seems to throw a runtime error saying "Operation not supported" on that line.

Am I doing something wrong, or is DDC not supposed to support that?

Pacane
  • 20,273
  • 18
  • 60
  • 97

1 Answers1

3

Dart Dev Compiler does not support dart:io. It is only for web applications.

Harry Terkelsen
  • 2,554
  • 13
  • 11