fromValue static method

AppCategory fromValue(
  1. int? value
)

Implementation

static AppCategory fromValue(int? value) {
  return AppCategory.values.firstWhere(
    (e) => e.value == value,
    orElse: () => AppCategory.undefined,
  );
}