formFieldLimit
Represents the limit for form field size in bytes for an ApplicationCall. This limit determines the maximum size allowed for form field data in a request.
The default value is 50 MiB. On JVM, default value can be set using the system property io.ktor.server.request.formFieldLimit.
To get the value of the formFieldLimit, use the getter:
val limit = call.formFieldLimitContent copied to clipboard
To set the value of the formFieldLimit, use the setter:
call.formFieldLimit = limitContent copied to clipboard