getByValue static method
Implementation
static SoundCategory getByValue(int value) {
return SoundCategory.values.firstWhere((x) => x.rawValue == value);
}
static SoundCategory getByValue(int value) {
return SoundCategory.values.firstWhere((x) => x.rawValue == value);
}