fromCategoryId static method

Category? fromCategoryId(
  1. int id
)

Implementation

static Category? fromCategoryId(int id) =>
    Category.values.firstWhereOrNull((e) => e.categoryId == id);