fromValue static method

UIInputVariant fromValue(
  1. int value
)

Implementation

static UIInputVariant fromValue(int value) =>
    UIInputVariant.values.firstWhere((e) => e.value == value, orElse: () => UIInputVariant.values.first);