title property
notification's title.
Example:
// Get notification title
String title = notification.title;
print("Notification title: $title");
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;
}