namespaceId property

String get namespaceId
override

eddystone's namespaceId.

Example:

// Get Eddystone namespace ID
String? namespaceId = eddystone.getNamespaceId();
print('Eddystone namespace ID: $namespaceId');

Implementation

String get namespaceId {
    final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
        NativeString Function(Pointer<Void>),
        NativeString Function(Pointer<Void>)
      >('navigine_sdk_flutter_Eddystone_namespaceId_get'));

    final _namespaceIdHandle = _getFfi(this.ptr);
    final _result = toPlatformString(_namespaceIdHandle);
    exception.checkCallResult();
    return _result;
}