availableForUser property
Is this task available to be done by the user?
Implementation
bool get availableForUser => (_state == UserTaskState.enqueued ||
_state == UserTaskState.canceled ||
_state == UserTaskState.notified);
Is this task available to be done by the user?
bool get availableForUser => (_state == UserTaskState.enqueued ||
_state == UserTaskState.canceled ||
_state == UserTaskState.notified);