status property

JournalStatus status

The status of this journal entry

Implementation

JournalStatus get status =>
    getProperty<StatusProperty>(StatusProperty.propertyName)?.journalStatus ??
    JournalStatus.unknown;
void status=(JournalStatus? value)

Sets the status

Implementation

set status(JournalStatus? value) => setOrRemoveProperty(
    StatusProperty.propertyName, StatusProperty.createJournalStatus(value));