main function

void main()

Implementation

void main() async {
  final handler = Handler();
  final ip = InternetAddress.anyIPv4; // Change to specific IP if needed
  final port = 8080; // Change to desired port

  await run(handler, ip, port);
}