Redirect constructor

Redirect({
  1. String? glob,
  2. String? location,
  3. String? regex,
  4. int? statusCode,
})

Implementation

Redirect({
  this.glob,
  this.location,
  this.regex,
  this.statusCode,
});