name property
eddystone's name.
Example:
// Get Eddystone name
String? eddystoneName = eddystone.getName();
print('Eddystone name: $eddystoneName');
Implementation
String get name {
final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
NativeString Function(Pointer<Void>),
NativeString Function(Pointer<Void>)
>('navigine_sdk_flutter_Eddystone_name_get'));
final _nameHandle = _getFfi(this.ptr);
final _result = toPlatformString(_nameHandle);
exception.checkCallResult();
return _result;
}