title property
@brief notification's title.
Dart code snippet: @snippet notification_manager_example.dart dart_Notification_getTitle
Implementation
String get title {
final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Pointer<Void> Function(Pointer<Void>),
Pointer<Void> Function(Pointer<Void>)
>('navigine_sdk_flutter_Notification_title_get'));
final _handle = this.handle;
final _titleHandle = _getFfi(_handle);
final _result = navigine_sdk_flutter_String_FromFfi(_titleHandle);
navigine_sdk_flutter_String_ReleaseFfiHandle(_titleHandle);
return _result;
}