fromValue static method
Implementation
static flags fromValue(int value) => switch (value) {
1 => F_CHUNKED,
2 => F_CONNECTION_KEEP_ALIVE,
4 => F_CONNECTION_CLOSE,
8 => F_CONNECTION_UPGRADE,
16 => F_TRAILING,
32 => F_UPGRADE,
64 => F_SKIPBODY,
128 => F_CONTENTLENGTH,
_ => throw ArgumentError('Unknown value for flags: $value'),
};