percentComplete property

int? percentComplete

Retrieves the percentage value between 0 and 100 that shows how much is done of this task,

100 means the task is fully done; 0 means the task has not been started.

Implementation

int? get percentComplete =>
    getProperty<IntegerProperty>(IntegerProperty.propertyNamePercentComplete)
        ?.intValue;
void percentComplete=(int? value)

Sets the percentage between 0 and 100.

Implementation

set percentComplete(int? value) => setOrRemoveProperty(
    IntegerProperty.propertyNamePercentComplete,
    IntegerProperty.create(
        IntegerProperty.propertyNamePercentComplete, value));