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