fromValue static method

StateMutability fromValue(
  1. List<int>? tags
)

Implementation

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