connentSocket static method

dynamic connentSocket(
  1. String path, {
  2. Map<String, String>? httpHeaders,
  3. bool? trustAllHost,
  4. String? keyStorePath,
  5. String? keyPassword,
  6. String? storePassword,
  7. String? keyStoreType,
})

Implementation

static connentSocket(String path,
    {Map<String, String>? httpHeaders,
      bool? trustAllHost,
      String? keyStorePath,
      String? keyPassword,
      String? storePassword,
      String? keyStoreType}) {
  _channel.invokeMethod('connentSocket', {
    'path': path,
    "httpHeaders": httpHeaders,
    "keyStorePath": keyStorePath,
    "trustAllHost": trustAllHost,
    "keyPassword": keyPassword,
    "storePassword": storePassword,
    "keyStoreType": keyStoreType
  });
}