name property

String get name
override

location name.

Example:

// Get location name
String? name = location.getName();
print('Location name: $name');

Implementation

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

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