form method
Returns the cached FormRequest wrapper for this request.
A new wrapper is created only once per request instance.
Example:
final form = request.form();
final values = await form.all();
Implementation
FormRequest form() {
if (_formRequestCache[this] == null) {
_formRequestCache[this] = FormRequest(this);
}
return _formRequestCache[this]!;
}