NativeRawSocketTransport constructor

NativeRawSocketTransport(
  1. String host,
  2. int port,
  3. AbstractSerializer serializer,
  4. int serializerType, {
  5. bool ssl = false,
  6. bool allowInsecureCertificates = false,
  7. int messageLengthExponent = 24,
  8. String? libraryPath,
})

Implementation

NativeRawSocketTransport(
  String host,
  int port,
  AbstractSerializer serializer,
  int serializerType, {
  bool ssl = false,
  bool allowInsecureCertificates = false,
  int messageLengthExponent = 24,
  String? libraryPath,
}) {
  throw UnsupportedError('Native transports require dart:io.');
}