nativeLibName property Null safety

String nativeLibName

Get default library name.

Implementation

static String get nativeLibName {
  String dllPath = '';
  if (Platform.isAndroid)
    dllPath = "libfacerec.so";
  else if (Platform.isIOS)
    dllPath = "facerec.framework/libfacerec.dylib";
  return dllPath;
}