fun fromInt()

in core/src/main/kotlin/com/uber/sdk2/core/ui/UberStyle.kt [41:49]


    fun fromInt(enumValue: Int): UberStyle {
      for (style in entries) {
        if (style.value == enumValue) {
          return style
        }
      }

      return DEFAULT
    }