priority property
- @JsonKey.new(name: 'priority', fromJson: _decodePlanEntryPriority, toJson: _encodePlanEntryPriority, includeIfNull: false, required: true)
final
The relative importance of this task. Used to indicate which tasks are most critical to the overall goal.
Implementation
@JsonKey(
name: 'priority',
fromJson: _decodePlanEntryPriority,
toJson: _encodePlanEntryPriority,
includeIfNull: false,
required: true,
)
final PlanEntryPriority priority;