fromValue static method
Implementation
static StateMutability fromValue(List<int>? tags) {
return values.firstWhere(
(e) => CompareUtils.iterableIsEqual(tags, e.tags),
orElse: () => throw ItemNotFoundException(value: tags),
);
}
static StateMutability fromValue(List<int>? tags) {
return values.firstWhere(
(e) => CompareUtils.iterableIsEqual(tags, e.tags),
orElse: () => throw ItemNotFoundException(value: tags),
);
}