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; /// If an error was encountered while parsing the body, it will appear here. /// /// Otherwise, this is `null`. dynamic get error; /// If an error was encountered while parsing the body, the call stack will appear here. /// /// Otherwise, this is `null`. StackTrace? get stack; }