nativeString method

String nativeString(
  1. String propertyName
)

Introspect the native app's APLConfiguration (iOS) / nz.co.electricbolt.appfiguratelibrary.Configuration (Android) subclass for the NSString (Obj-C), String (Swift, Java, Kotlin) with the propertyName specified.

Implementation

String nativeString(String propertyName) {
  Object? object = _cachedConfiguration[propertyName];
  if (object != null && object is String) {
    return object;
  }
  return '';
}