priority property

  1. @JsonKey.new(name: 'priority', fromJson: _decodePlanEntryPriority, toJson: _encodePlanEntryPriority, includeIfNull: false, required: true)
PlanEntryPriority priority
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;