FormDataRequest constructor

FormDataRequest(
  1. HttpRoute route,
  2. {Map<String, String> formParams = const {},
  3. List<MultipartFile> files = const [],
  4. bool applyGlobalRateLimit = true,
  5. String? auditLogReason,
  6. bool authenticated = true,
  7. Map<String, String> headers = const {},
  8. String method = 'GET',
  9. Map<String, String> queryParameters = const {}}
)

Create a new FormDataRequest.

Implementation

FormDataRequest(
  super.route, {
  this.formParams = const {},
  this.files = const [],
  super.applyGlobalRateLimit,
  super.auditLogReason,
  super.authenticated,
  super.headers,
  super.method,
  super.queryParameters,
});