priorities property

List<ItemModel> priorities
getter/setter pair

Implementation

static List<ItemModel> priorities = [
  ItemModel(imagePath: 'assets/high.png', title: 'High',value: 'HIGH'),
  ItemModel(imagePath: 'assets/medium.png', title: 'Medium',value: 'MEDIUM'),
  ItemModel(imagePath: 'assets/low.png', title: 'Low',value: "LOW"),
  ItemModel(imagePath: 'assets/not_defined.png', title: 'Not Defined',value: "NOT_DEFINED")
];