8 lines
145 B
Dart
8 lines
145 B
Dart
class AliceHttpResponse {
|
|
int? status = 0;
|
|
int size = 0;
|
|
DateTime time = DateTime.now();
|
|
dynamic body;
|
|
Map<String, String>? headers;
|
|
}
|