maxSize property Null safety

int maxSize
read / write

The maximum size of a request body.

A request with a body larger than this size will be rejected. Value is in bytes. Defaults to 10MB (1024 * 1024 * 10).

Implementation

static int maxSize = 1024 * 1024 * 10;