options method

void options(
  1. String path,
  2. Handler handler
)

Define a options route.

Implementation

void options(String path, Handler handler) =>
    route(r'options', path, handler);