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

10 lines
290 B
Dart
Raw Normal View History

2021-06-04 09:34:25 +00:00
// 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 Response {
Response(this.body, this.statusCode, this.headers);
final dynamic body;
final int statusCode;
final Map<String, String> headers;
}