getInterfaceName static method

String getInterfaceName()

Implementation

static String getInterfaceName() {
  if (Platform.isAndroid) {
    return "NativeAndroid";
  } else if (Platform.isIOS) {
    return "NativeiOS";
  }
  return "VirtualInterface";
}