Files
proxypin/lib/network/http/constants.dart
2024-11-16 01:48:58 +08:00

20 lines
330 B
Dart

class HttpConstants {
//h2协议
static const String h2 = 'h2';
/// Line feed character /n
static const int lf = 10;
/// Carriage return /r
static const int cr = 13;
/// Horizontal space
static const int sp = 32;
/// Colon ':'
static const int colon = 58;
/// Colon '='
static const int equal = 61;
}