decode static method
Construct a configuration from the encoded server configuration.
Implementation
static Future<OhttpKeys> decode({required List<int> bytes}) async {
final res = await FfiOhttpKeys.decode(bytes: bytes);
return OhttpKeys._(field0: res.field0);
}