startServer method

Future<void> startServer({
  1. required String rootDir,
  2. int port = 8080,
})

Start the local HTTP file server

Implementation

Future<void> startServer({
  required String rootDir,
  int port = 8080,
}) {
  throw UnimplementedError('startServer() has not been implemented.');
}