getLibraryFileName static method

String getLibraryFileName()

Get the platform-specific library file name

Implementation

static String getLibraryFileName() {
  if (Platform.isWindows) {
    return _windowsLibName;
  } else if (Platform.isMacOS) {
    return _macosLibName;
  } else if (Platform.isLinux) {
    return _linuxLibName;
  } else {
    throw OracleConfigurationException(
      'Unsupported platform: ${Platform.operatingSystem}',
    );
  }
}