import 'file_upload_info.dart'; /// A representation of data from an incoming request. abstract class BodyParseResult { /// The parsed body. Map get body; /// The parsed query string. Map get query; /// All files uploaded within this request. List get files; /// The original body bytes sent with this request. /// /// You must set [storeOriginalBuffer] to `true` to see this. List get originalBuffer; }