handler property

ServeHandler get handler

The handler to invoke to process each incoming request.

Implementation

_i4.ServeHandler get handler => (
      _i5.Request p0,
      _i4.ServeHandlerInfo p1,
    ) =>
        _i3.callMethod(
          _i3.getProperty(
            this,
            'handler',
          ),
          r'call',
          [
            this,
            p0,
            p1,
          ],
        );
set handler (ServeHandler value)

Implementation

set handler(_i4.ServeHandler value) {
  _i3.setProperty(
    this,
    'handler',
    _i3.allowInterop(value),
  );
}