sessionId method

Future<String> sessionId({
  1. String name = 'session',
})

A session identifier from a cookie, as 401 rather than 400 when absent.

Implementation

Future<String> sessionId({String name = 'session'}) =>
    extractors.sessionId(name: name).require(this);