id property
notification's unique identifier.
Example:
// Get notification ID
int id = notification.id;
print("Notification ID: $id");
Implementation
int get id {
final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Int32 Function(Pointer<Void>),
int Function(Pointer<Void>)
>('navigine_sdk_flutter_Notification_id_get'));
final _idHandle = _getFfi(this.ptr);
final _result = _idHandle;
exception.checkCallResult();
return _result;
}