Handler constructor

Handler({
  1. String? path,
  2. Pattern? rPath,
  3. required Object callback(
    1. HttpRequest request
    ),
})

Constructor

Implementation

Handler({
  this.path,
  this.rPath,
  required this.callback,
});