Redirect constructor
Redirect(})
Implementation
Redirect(
Uri body, {
statusCode = HttpStatus.movedPermanently,
Map<String, dynamic>? headers,
List<Cookie>? cookies,
}) : super._make(
body: body,
statusCode: statusCode,
headers: headers,
cookies: cookies,
);