typeOfValue static method

QChatApplyJoinMode? typeOfValue(
  1. int value
)

Implementation

static QChatApplyJoinMode? typeOfValue(int value) {
  for (QChatApplyJoinMode e in QChatApplyJoinMode.values) {
    if (e.value() == value) {
      return e;
    }
  }
  return null;
}