4 implementations of a simple web server using Dart programming languages and Isolate:
1- Using Async/Await (dart_server_await.dart)
2- Using Future (dart_server_future.dart)
3- Using Isolate and Async/Await (dart_server_isolate_await.dart)
4- Using Isolate and Future (dart_server_isolate_future.dart)
You can read the full article here.