openHelper method

Exception? openHelper(
  1. IosTransportHandle handle
)

Implementation

Exception? openHelper(IosTransportHandle handle) {
  if (handle.value == 0) {
    final PlatformException error = PlatformException(
        code: SktErrors.ESKT_INVALIDHANDLE.toString(),
        message: 'Invalid Handle');
    return error;
  }
  transportHandle = handle.value;
  return null;
}