start method

Future<void> start()

Start the server

Implementation

Future<void> start() async {
  _server = await shelf_io.serve(pipeline, InternetAddress.anyIPv4, port);
  print('Server running at http://localhost:$port');
}