fromValue static method
Deserialize from the integer stored in the database.
Implementation
static MediaAvailability fromValue(int value) {
return MediaAvailability.values.firstWhere(
(a) => a.value == value,
orElse: () => MediaAvailability.notApplicable,
);
}