1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-02 18:49:47 +00:00
app-mirror-github/lib/api/response.dart

17 lines
391 B
Dart

// This is a wrapper class to be able to return the headers up to the provider
// to properly handle things like pagination with it.
class Error {
Error(this.message);
final String message;
}
class Response {
Response(this.body, this.statusCode, this.headers, {this.error});
final dynamic body;
final int statusCode;
final Map<String, String> headers;
final Error? error;
}