Cronet_EngineParams_enable_quic_set method

void Cronet_EngineParams_enable_quic_set(
  1. Pointer<Cronet_EngineParams> self,
  2. bool enable_quic
)

Implementation

void Cronet_EngineParams_enable_quic_set(
  ffi.Pointer<Cronet_EngineParams> self,
  bool enable_quic,
) {
  return _Cronet_EngineParams_enable_quic_set(
    self,
    enable_quic ? 1 : 0,
  );
}